-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
62 lines (62 loc) · 1.52 KB
/
404.html
File metadata and controls
62 lines (62 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>404 Not Found</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/styles.css">
<style>
body {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #000;
color: #F24848;
margin: 0;
}
.notfound-container {
text-align: center;
max-width: 420px;
width: 100%;
}
h1 {
font-size: 3em;
color: #F24848;
margin-bottom: 12px;
letter-spacing: 0.03em;
}
p {
color: #F24848;
margin: 12px 0 0 0;
font-size: 1.15em;
}
a.home-btn {
display: inline-block;
margin-top: 28px;
padding: 12px 32px;
background: transparent;
color: #F24848;
border: 2px solid #F24848;
border-radius: 8px;
font-size: 1.1em;
text-decoration: none;
font-weight: 600;
transition: background 0.2s, color 0.2s;
}
a.home-btn:hover {
background: #F24848;
color: #000;
}
</style>
</head>
<body>
<input type="checkbox" id="theme-switch">
<label for="theme-switch" class="theme-label"></label>
<div class="notfound-container">
<h1>404 Not Found</h1>
<p>Sorry, the page you are looking for does not exist.</p>
<a class="home-btn" href="index.html">Go to homepage</a>
</div>
</body>
</html>