-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (53 loc) · 1.03 KB
/
Copy pathindex.html
File metadata and controls
54 lines (53 loc) · 1.03 KB
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>
<head>
<title>404</title>
<style>
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
background: #e0e7ff;
color: #0b1324;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.container { text-align: center; }
h1 {
font-size: 80px;
margin: 0;
font-weight: 600;
letter-spacing: -1px;
}
h2 {
margin: 10px 0 8px;
font-weight: 500;
opacity: 0.9;
}
.domain {
color: #7f1d1d;
}
p {
margin: 0;
color: #3f4b63;
font-size: 16px;
}
.accent {
width: 40px;
height: 3px;
background: #4f46e5;
margin: 16px auto;
border-radius: 2px;
}
</style>
</head>
<body>
<div class="container">
<h1>4 0 4</h1>
<div class="accent"></div>
<h2><span class="domain"">max@holstegge.com</span> is available</h2>
<p>The page you are looking for does not exist.</p>
</div>
</body>
</html>