-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
40 lines (39 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>(✖╭╮✖)</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("pointy_rock.jpg");
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">(✖╭╮✖)</h4>
<div class="content-404">
this page doesn't exist and it's probably my fault
</div>
</main>
</body>
</html>