-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
49 lines (49 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 Not Found</title>
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
font-family: Arial, sans-serif;
color: #333;
background-color: #f9f9f9;
margin: 0;
}
h1 {
font-size: 2.5em;
color: #ff6347;
}
p {
font-size: 1.1em;
}
.developer {
margin-top: 20px;
font-size: 0.9em;
color: #555;
}
.developer a {
color: #007acc;
text-decoration: none;
}
.developer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>404 - Page Not Found :(</h1>
<hr />
<p>Oops! The page you're looking for doesn't exist on this Rust Web Server.</p>
<div class="developer">
<a href="https://github.com/joshuabvarghese">Joshua Varghese</a>
</div>
</body>
</html>