-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
51 lines (51 loc) · 1.13 KB
/
404.html
File metadata and controls
51 lines (51 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found | Trackle</title>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'DM Sans', sans-serif;
background-color: #ffffff;
color: #000000;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
img {
width: 100px;
height: auto;
margin-bottom: 1rem;
}
h1 {
font-size: 2rem;
margin: 0.5rem 0;
}
p {
font-size: 1.2rem;
margin: 0.5rem 0 2rem;
}
a {
text-decoration: none;
color: #000000; /* Set link text to black */
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div>
<img src="/logo.png" alt="Logo">
<h1>This station is not on any line!</h1>
<p>404 Error - Page Not Found</p>
<a href="/">Return to Home</a>
</div>
</body>
</html>