-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
39 lines (38 loc) · 807 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
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<script src = "main.js"></script>
<link href="https://fonts.googleapis.com/css?family=Playfair+Display" rel="stylesheet">
<style>
a {
text-decoration: none;
color: black;
transition: .5s;
}
a:hover {
color: gray;
}
.four-04 {
font-size: 400px;
}
.four-text {
font-size: 50px;
margin-bottom: 5vh;
}
</style>
</head>
<body>
<div style = "width: 100%; text-align: center; margin-top: 0vh;">
<div class = "four-04">
404
</div>
<div class = "four-text">
The page you're looking for can't be found.
<!--Anyways, let's contemplate this message.-->
</div>
<a href = "index.html">
go home
</a>
</div>
</body>
</html>