-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (43 loc) · 1.49 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Memory Game</title>
</head>
<body>
<div class="site-container">
<header class="header">
<p class="header-title">MEMORY GAME</h3>
</header>
<div class="main">
<div class="game-window">
<div class="cards-container"><h1 class="options-text" id="placeholder-text">Click 'Start Game' to begin!</h1>
</div>
<div class="options-bar">
<div class="left-options-container">
<h2 class="options-text" id="current-score">Found: 0/10</h2>
</div>
<div class="center-options-container">
<button class="start-button">
<h1 class="button-title">Start Game</h1>
</button>
<div class="attempts">
<p class="options-text" id="current-attempts">Attempts: 0</p>
</div>
</div>
<div class="right-options-container">
<h2 class="options-text">Best Game:</h2>
<p class="options-text" id="best-game"></p>
</div>
</div>
</div>
</div>
<footer class="footer">
<p class="footer-text">Created by Justin Clark</p><a href="https://www.github.com/jclark1913"><img
src="./images/github-mark-white.svg" class="github-link"></a></p>
</footer>
<script src="memory-game.js"></script>
</body>
</html>