generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
48 lines (45 loc) · 2.37 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
48
<!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="keyword" content="Tic-Tac-Toe game that can be played against AI or a human">
<meta name="description" content="Simple and relaxing game that is well known and for all ages.">
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Caveat+Brush&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/64b115579c.js" crossorigin="anonymous"></script>
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<link rel="stylesheet" href="assets/css/style.css">
<title>Tic Tac Toe</title>
</head>
<body onload="blinkEx();">
<div id="error">
<h1 id="exclamation"><i class="fas fa-exclamation-triangle"></i></h1>
<h1>Er<span>r</span>or 4<span>0</span>4</h1>
<p>Sorry we couldn't find that page</p>
<p></p>
<p>
<a href="index.html">Click <span>here</span> to go back to the game page.</a>
</p>
</div>
<footer id="footer">
<div class="social">
<a class="wiki" href="https://en.wikipedia.org/wiki/Tic-tac-toe" target="_blank" rel="noopener"
aria-label="Visit Tic Tac Toe's Wikipedia page (link opens in new tab)"><i
class="fa-brands fa-wikipedia-w"></i></a>
<a class="github" href="https://github.com/Inc21/tic-tac-toe-pp2" target="_blank" rel="noopener"
aria-label="Visit Tic Tac Toe's Github page (link opens in new tab)"><i
class="fa-brands fa-github"></i></a>
<a class="linkedin" href="https://www.linkedin.com/in/indrek-mannik-038770259/" target="_blank"
rel="noopener" aria-label="Visit Indrek Mannik's Linked In page (link opens in new tab)"><i
class="fa-brands fa-linkedin-in"></i></a>
</div>
</footer>
<script src="assets/js/main.js"></script>
</body>
</html>