-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
54 lines (54 loc) · 1.32 KB
/
404.html
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Upcoming</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #f4f4f4;
color: #333;
text-align: center;
}
.container {
max-width: 600px;
}
h1 {
font-size: 5rem;
margin: 0;
}
p {
font-size: 1.5rem;
margin: 10px 0 30px;
}
.upcoming {
font-size: 2.5rem;
color: #007bff;
margin-top: 20px;
}
a {
text-decoration: none;
color: #007bff;
font-size: 1.2rem;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<p>Oops! The page you're looking for doesn't exist.</p>
<div class="upcoming">Upcoming</div>
<a href="/">Go Back to Home</a>
</div>
</body>
</html>