-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
57 lines (53 loc) · 1.42 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
50
51
52
53
54
55
56
57
<!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</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Silkscreen">
<style>
h1 {
font-family: 'Silkscreen', 'sans-serif';
font-size: 10rem;
color: whitesmoke;
text-align: center;
padding: 0;
margin: 10% 5% 10 5%;
}
.error-container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.error-message {
font-family: 'Silkscreen', 'sans-serif';
color: whitesmoke;
font-size: 1.5rem;
text-align: center;
}
.error-message a:link {
color: rgb(35, 122, 190);
background-color: transparent;
text-decoration: none;
}
.error-message a:hover {
color: rgb(125, 209, 215);
background-color: transparent;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="error-containter">
<h1>404</h1>
<div class="error-message">
<p>Oops! Don't get lost...</p>
<a href="index.html">Go Home</a>
</div>
</div>
</body>
</html>