-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
86 lines (79 loc) · 2.34 KB
/
404.html
File metadata and controls
86 lines (79 loc) · 2.34 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found | Alan Fuller</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #fffacd;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: #2d3748;
}
.container {
text-align: center;
background: #ffffff;
border-radius: 0;
padding: 3rem;
border: 2px solid #2d3748;
max-width: 500px;
margin: 2rem;
}
.error-code {
font-size: 4rem;
font-weight: 700;
color: #2d3748;
margin-bottom: 1rem;
}
.error-message {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #1a202c;
}
.error-description {
color: #4a5568;
margin-bottom: 2rem;
line-height: 1.6;
}
.home-button {
display: inline-block;
background: #2d3748;
color: white;
text-decoration: none;
padding: 1rem 2rem;
border-radius: 0;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid #2d3748;
}
.home-button:hover {
background: #fffacd;
color: #2d3748;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<div class="error-code">404</div>
<h1 class="error-message">Page Not Found</h1>
<p class="error-description">
Sorry, the page you're looking for doesn't exist.
Let's get you back to the main page.
</p>
<a href="/" class="home-button">Go Home</a>
</div>
</body>
</html>