-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
46 lines (45 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 || 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: #e0e5ec;
background-size: cover;
font-family: 'Roboto', 'sans-serif';
}
main{
display: flex;
height: 120vh;
justify-content: center;
align-items: center;
flex-direction: column;
}
.header404{
font-family: 'Chango', cursive;
font-size: 100px;
}
.content404{
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
</style>
</head>
<body>
<main>
<img src="https://github.com/SparkScratch-P/sparkscratch-p.github.io/raw/main/20220119_174221.gif?raw=true" align="center" alt="ico" width="120">
<h1 class="header404">404</h4>
<div class="content-404">
Uh-oh! We couldn't find the page you are looking for.
</div>
<p>
Try <a href="/">Checking out our home page</a>, or <a href="https://sparkscratch-p.github.io/neon-table/">hit some shots</a> on table.
</p>
</main>
</body>
</html>