-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.html
43 lines (42 loc) · 1.29 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
<!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="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Chango&family=Roboto:wght@300&display=swap" rel="stylesheet">
<style>
body{
background-image: url("https://images.unsplash.com/photo-1616235132417-99f443954d2e?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=334&q=80");
background-size: cover;
font-family: 'Roboto', 'sans-serif';
}
main{
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
flex-direction: column;
}
.header404{
font-family: 'Chango', cursive;
font-size: 48px;
}
.content404{
text-align: center;
}
</style>
</head>
<body>
<main>
<h4 class="header404">404</h4>
<div class="content-404">
Uh-oh! We couldn't find the page you are looking for.
</div>
<p>
<a href="/">Check our home page</a>
</p>
</main>
</body>
</html>