-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 999 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>nixware</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<style>
body {
background-color: #141414;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
}
.container img {
max-width: 100%;
height: auto;
}
.container p {
color: white;
font-size: 18px;
font-family: 'Anonymous Pro', monospace;
}
</style>
</head>
<body>
<div class="container">
<img src="https://s9.gifyu.com/images/SVR09.webp">
<p>An Angel Stands in Balaam's Way</p>
</div>
</body>
</html>