-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
79 lines (78 loc) · 3.81 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!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">
<title>Match the Cards</title>
<!-- Bootstrap CDN -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/style.css">
<!-- Favicon icon -->
<link rel="shortcut icon" href="assets/images/favicon.ico" type="image/x-icon">
<link rel="icon" href="assets/images/favicon.ico" type="image/x-icon">
<!-- Fontawesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />
<!-- Internal CSS stylesheet -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- Header section. JavaScript used to indicate to users location on website -->
<header id="introduction-header" class="mb-5">
<nav id="nav">
<div class="container-fluid text-center">
<h1 class="mt-2">MATCH THE FRUITS</h1>
<h2 class="mt-3 mb-3">CARD MEMORY GAME</h2>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
</header>
<main>
<!-- Main content on 404 page to redirect users back to main site -->
<div class="text-center">
<h1 class="my-5">Whoops!</h1>
<h2 class="mb-5">We couldn't find what you were looking for</h2>
<!-- Button to guide users back to the game if lost -->
<!-- Using an <a> over <button> to pass accessibility tests -->
<a href="index.html" class="text-center button" role="button">Return to Game</a>
</div>
</main>
<footer class="text-center mt-5 footer">
<ul>
<!-- Credit for accessibility measures in social media icons: Mário Gusman -->
<!-- Credit for social media icons: Font awesome -->
<li>
<a href="https://www.instagram.com/" target="_blank" rel="noopener">
<i aria-hidden="true" class="fab fa-instagram"></i>
<span class="sr-only">Instagram</span>
</a>
</li>
<li>
<a href="https://www.facebook.com/" target="_blank" rel="noopener">
<i aria-hidden="true" class="fab fa-facebook"></i>
<span class="sr-only">Facebook</span>
</a>
</li>
<li>
<a href="https://twitter.com/" target="_blank" rel="noopener">
<i aria-hidden="true" class="fab fa-twitter"></i>
<span class="sr-only">Twitter</span>
</a>
</li>
<li>
<a href="https://www.youtube.com/" target="_blank" rel="noopener">
<i aria-hidden="true" class="fab fa-youtube"></i>
<span class="sr-only">YouTube</span>
</a>
</li>
</ul>
</footer>
</body>
</html>