-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (62 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="icon" href="./images/favicon.svg" type="image/svg+xml" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>visits | notifications</title>
<style>
body {
background: #121212;
}
.main img {
width: 100%;
max-height: 80vh;
}
.footer {
max-width: 760px;
margin: auto;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS';
}
.footer a {
color: white;
}
.text-center {
text-align: center;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS',
sans-serif;
}
.footer--links {
display: flex;
justify-content: space-between;
}
code {
background-color: rgb(56, 56, 56);
border-radius: 6px;
padding: 4px;
}
</style>
</head>
<body>
<div class="main">
<img src="./images/pr.svg" />
<div class="footer">
<p>try it now</p>
<div class="footer--links">
<span
>send <code>/start</code> to :
<a target="_blank" href="https://t.me/Website_Visits_bot"
>bot</a
></span
>
<span
>then visit : <a target="_blank" href="./visit/">website</a></span
>
</div>
</div>
</div>
</body>
</html>