generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
39 lines (33 loc) · 1.25 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Quadulo: a click-4 game of logic">
<meta name="keywords" content="quadulo, game, quadulo game, 1234 game, logic, logic game, modulus">
<meta http-equiv="refresh" content="7; url=index.html">
<!-- Stylesheet Link and Favicon -->
<link rel="stylesheet" href="assets/css/style.css">
<link rel='shortcut icon' type='image/x-icon' href='favicon.ico'>
<title>Quadulo</title>
</head>
<body>
<!-- Game Title -->
<header>
<h1>Quadulo</h1>
</header>
<!-- Error Message -->
<section id="error-message">
<h2><span class="error-block">4</span><span class="error-block">0</span><span class="error-block">4</span></h2>
<h3>Page not found</h3>
<p>Sorry, but this page does not exist.</p>
<p><a href="index.html">CLICK HERE</a> to return to the game</p>
<p>or wait a few seconds to be redirected.</p>
</section>
<!-- Footer -->
<footer>
<p id="design-info">Game Design & Coding ©2023 Nathan Surgenor</p>
</footer>
</body>
</html>