-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
48 lines (41 loc) · 875 Bytes
/
404.html
File metadata and controls
48 lines (41 loc) · 875 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
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - TurtleMod</title>
<style>
body {
background: #f4f7f4;
font-family: "Inter", sans-serif;
margin: 0;
padding: 20px;
text-align: center;
color: #1a1a1a;
}
h1 {
color: #1f7a3a;
font-size: 2.5rem;
}
p {
font-size: 1.1rem;
}
a {
color: #1f7a3a;
font-weight: bold;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>404</h1>
<p>Page not found.</p>
<p><a href="index.html">Return to home</a></p>
<script>
console.warn("404: Page not found.");
</script>
</body>
</html>