-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (36 loc) · 725 Bytes
/
index.html
File metadata and controls
44 lines (36 loc) · 725 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nope</title>
<style>
html, body {
height: 100%;
}
body {
background-color: #0e0f1f;
color: #77eb9e;
display: flex;
font-family: "sf mono", monospace;
font-size: 1rem;
line-height: 1.5;
margin: 0;
}
h1 {
font-size: 100%;
font-weight: normal;
}
.words {
padding: 2rem;
margin: auto;
max-width: 400px;
}
</style>
</head>
<body>
<div class="words">
<h1>Nope</h1>
</div>
</body>
</html>