-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathog.html
More file actions
39 lines (39 loc) · 777 Bytes
/
Copy pathog.html
File metadata and controls
39 lines (39 loc) · 777 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
width: 1200px;
height: 630px;
background: #0a0a0a;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
overflow: hidden;
}
h1 {
font-size: 96px;
font-weight: 700;
color: #E91E9E;
letter-spacing: -0.02em;
margin-bottom: 24px;
}
p {
font-size: 36px;
color: #eee;
}
p span {
color: #84FF00;
font-weight: 700;
}
</style>
</head>
<body>
<h1>RadioFAF</h1>
<p>Don't follow. <span>Tune in.</span></p>
</body>
</html>