-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
47 lines (42 loc) · 1.71 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
47
<!DOCTYPE html>
<html>
<head>
<!--meta SEO tags-->
<title>Page not found!</title>
<!-- google verification -->
<meta name="google-site-verification" content="XRSwsYltNYDxEiuOpcflsZ3oP1a6HKQTlkxA4ryQGAw" />
<!--my stuff-->
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link href="CSS/BaseLayout.css" type="text/css" rel="stylesheet"/>
<link href="CSS/SmallDisplays.css" type="text/css" rel="stylesheet"/>
<link href="CSS/LargeDisplays.css" media="screen and (min-width: 1080px)" type="text/css" rel="stylesheet"/>
<script src="JS/main.js" type="module" defer></script>
</head>
<body class="light-background">
<div id="content">
<div id="sections">
<div class="section">
<h2>Error 404: missing page error</h2>
</div>
<div class="section">
<div class="col">
<img class="fade-in picture-format" src="images/404error.png">
</div>
<div class="col">
<h2>maybe...</h2>
<p>
the address is misspelled or this page no longer exist.
</p>
<p>
you can go to my <a class="content-link" href="index.html">homepage</a>
and try to find it again.
</p>
<p>
or if you feel like trying out a game I made go <a class="content-link" href="https://sergiogyoz.itch.io/color-join">here!</a>
</p>
</div>
</div>
</div>
</div>
</body>
</html>