-
Notifications
You must be signed in to change notification settings - Fork 320
Expand file tree
/
Copy path404.html
More file actions
69 lines (57 loc) · 1.39 KB
/
Copy path404.html
File metadata and controls
69 lines (57 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>404 - Page Not Found | MooVit</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css">
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #0f172a;
color: white;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
.container {
max-width: 600px;
}
h1 {
font-size: 120px;
margin: 0;
color: #38bdf8;
}
h2 {
margin-top: 10px;
}
p {
color: #cbd5f5;
}
a {
display: inline-block;
margin-top: 20px;
padding: 12px 24px;
background: #38bdf8;
color: black;
text-decoration: none;
border-radius: 6px;
font-weight: bold;
}
a:hover {
background: #0ea5e9;
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<h2>Page Not Found</h2>
<p>Oops! The page you’re looking for doesn’t exist or has been moved.</p>
<a href="index.html">⬅ Back to Home</a>
</div>
</body>
</html>