-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (36 loc) · 1.45 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="./assets/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/icons/favicon-16x16.png">
<link rel="manifest" href="./assets/icons/site.webmanifest">
<title>Stargate Glyphs Memory Game</title>
<link rel="stylesheet" href="./assets/style.css">
<script src="./assets/scripts.js"></script>
</head>
<body>
<header>
<h1>Stargate Glyphs Memory Game</h1>
<div>
<h2>Instructions</h2>
<p>Click the images below and reveal a glyph. Match the symbols to clear the board and win.</p>
</div>
<div>
<h3>Score (Pairs found): <span id="result"></span></h3>
</div>
</header>
<main>
<div class="grid">
</div>
</main>
<footer>
<div class="copyright">
© 2020 - Built by Paul Ooi
</div>
<div class="reference">Referenced <a href="https://github.com/kubowania/memory-game" target="_blank" rel="noopener noreferrer">Ania Kubow</a> - <a href="https://www.youtube.com/watch?v=lhNdUVh3qCc&t=115s" target="_blank" rel="noopener noreferrer">Youtube Code Along</a></div>
</footer>
</body>
</html>