-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (71 loc) · 1.97 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>upppv</title>
<meta name="keywords" content="upv" />
<meta name="description" content="free animes no ads" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nanum+Pen+Script" />
<style>
html {
--primary-color: #6668ab;
}
html,
body {
height: 100%;
width: 100%;
box-sizing: border-box;
margin: 0;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
text-align: center;
padding: 3em;
background: linear-gradient(to bottom, var(--primary-color), #1e1e1e);
/* font-family: 'Nanum Pen Script'; */
}
.icon {
width: 100px;
height: 100px;
}
.btn {
background-color: var(--primary-color);
color: white;
border: none;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 6em;
}
.btn-accent {
background-color: #bfb161;
border-color: #bfb161;
}
.btn-outline {
background-color: transparent;
border: 1px solid white;
color: white;
}
</style>
</head>
<body>
<img src="ic_launcher_round.png" alt="icon" class="icon" />
<p>Free animes no ads</p>
<div class="button-group">
<a href="//www.upv.life"><button class="btn btn-outline">Website</button></a>
<a href="https://cdn.jsdelivr.net/gh/upvorg/cdn@master/apk/app-arm64-v8a-release.apk">
<button class="btn btn-accent">Download</button>
</a>
</div>
</body>
</html>