generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.html
40 lines (40 loc) · 1.13 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
<!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 rel="shortcut icon" type="image/png" href="spock.png">
<link href="https://fonts.googleapis.com/css2?family=Chango&family=Roboto:wght@300&display=swap" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
</head>
<style>
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>
<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>
<footer>Mc Daid Games <i class="fa-solid fa-hand-fist"></i> inc. 2022</footer>
</body>
</html>