-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
47 lines (43 loc) · 950 Bytes
/
Copy path404.html
File metadata and controls
47 lines (43 loc) · 950 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
45
46
47
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page not found - Junhao Ge</title>
<style>
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
background: #f5f3ee;
color: #18201d;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
letter-spacing: 0;
}
main {
width: min(680px, calc(100% - 40px));
}
h1 {
margin: 0 0 12px;
font-size: 40px;
line-height: 1.1;
}
p {
color: #59645f;
font-size: 18px;
line-height: 1.6;
}
a {
color: #235c78;
font-weight: 700;
}
</style>
</head>
<body>
<main>
<h1>Page not found.</h1>
<p>The page may have moved. Return to <a href="/">Junhao Ge's homepage</a>.</p>
</main>
</body>
</html>