-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
65 lines (58 loc) · 1.85 KB
/
404.html
File metadata and controls
65 lines (58 loc) · 1.85 KB
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
58
59
60
61
62
63
64
<!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>
@import url('https://fonts.googleapis.com/css?family=Alata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;500;700&display=swap');
body {
background-image: linear-gradient(#8c00ff, #8c00ff, #8c00ffd7, #8c00ffd7, #7f01e6bd, #8c00ffb7);
background-size: cover;
font-family: 'Roboto', sans-serif;
color: white;
margin: 0;
font-family: 'Outfit', sans-serif;
}
main {
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
flex-direction: column;
}
.header404 {
font-size: 48px;
font-weight: bold;
}
.content404 {
text-align: center;
font-weight: 300;
}
a {
color: white;
font-style: normal;
text-decoration: none;
background-color: #00000000;
}
a:hover {
transition: all 0.2s ease-in-out;
text-shadow: 0px 0px 10px rgb(255 255 255);
}
</style>
</head>
<body>
<main>
<h4 class="header404">Uh-oh!</h4>
<div class="content-404">
You hit a 404 error, we couldn't find the page you are looking for
</div>
<p>
<a href="https://deedev.dev/">Go back home ➜</a>
</p>
</main>
</body>
</html>