-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (48 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Tran Nguyen Nguyen Thuong Truong">
<meta name="description" content="Notix">
<title>Notix homepage</title>
<style>
body {
font-family: Poppins, sans-serif;
margin: 0;
padding: 0;
background-attachment: fixed;
background-image: url("./public/banner.svg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
overflow: hidden;
text-align: center;
}
p {
color: #666;
margin-top: 70vh;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
span {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
color: gray;
padding: 0.5rem 0;
font-size: 0.8rem;
}
</style>
</head>
<body>
<p>Thank you for trusting and choosing to use our service. <br /><br/> Stay tuned for latest updates at the <a href="https://thuongtruong109.github.io/notix/changelog.html">changelog</a></p>
<span>Built by ©thuongtruong, 2023</span>
</body>
</html>