-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (49 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blusutils Open Website</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #141414;
color: #ffffff;
font-family: 'JetBrains Mono', monospace;
}
h2 {
font-weight: 100;
font-size: 1em;
}
footer {
position: absolute;
bottom: 10px;
font-size: 14px;
}
footer a {
color: #b5b5b5;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
footer a:visited {
color: #7d7d7d;
}
</style>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400&display=swap" rel="stylesheet">
</head>
<body>
<h1>blusutils</h1>
<h2>stub page</h2>
<footer>
This website is <a href="https://github.com/Blusutils/website" target="_blank">opensource</a>
</footer>
</body>
</html>