-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 1.4 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" />
<title>Memory Game!</title>
<link rel="stylesheet" href="app.css" />
</head>
<body>
<h1>Memory Game!</h1>
<h2>
Instructions:
</h2>
<ol>
<li>Select basic colors, random colors, or GIFs.</li>
<li>If selecting random colors, input a number of pairs between 3 and 10.</li>
<li>Click "Start Game".</li>
<li>To replay, click reset game, then repeat steps 1 through 3!</li>
</ol>
<form>
<p>Select game mode below:</p>
<div>
<input type="radio" id="basic" name="mode" value="basic">
<label for="static">Basic Colors</label>
</div>
<div>
<input type = "radio" id="random" name="mode" value="random">
<label for="random">Random Colors</label>
</div>
<div>
<input type="radio" id="gifs" name="mode" value="gifs">
<label for="gifs">GIFs</label>
</div>
</form>
<p>
<label for="pairs">Enter number of pairs (3-10):
<input type="number" name="pairs" min="3" max="10">
</label>
</p>
<p>
<button id = "start">Start Game</button>
</p>
<p>
<button id = "reset">Reset Game</button>
</p>
<p id = "score">Score: 0</p>
<p id = "low-score">Five pair game low score: 0</p>
<div id="game">
</div>
<script src="app.js"></script>
</body>
</html>