-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
35 lines (33 loc) · 808 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>404 - Page Not Found</title>
<style>
body{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: sans-serif;
}
h1{
font-size: 3em;
margin: 10px;
}
p{
font-size: 1.5em;
margin: 10px;
}
img{
border: 1px solid blue;
border-radius: 20px;
}
</style>
</head>
<body>
<h1>Oops! Page Not Found</h1>
<p>It looks like you've reached a page that doesn't exist.</p>
<p><a href="https://nate2898.github.io/home">Go back to the homepage</a></p>
<img src="https://nate2898.github.io/src/images/drake-computer.gif" alt="Drake Meme" width="50%" height="50%">
</body>
</html>