-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.15 KB
/
index.html
File metadata and controls
32 lines (32 loc) · 1.15 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Memory Game</title>
<link rel="stylesheet" href="memory.css">
</head>
<body>
<div id="container">
<header>
<h1>Memory<br>Game</h1>
<select name="gameDiff" id="diffSelect">
<option value="12">Novice (12 Pairs)</option>
<option value="18">Aficionado (18 Pairs)</option>
<option value="25">Professional (25 Pairs)</option>
<option value="30">Ninja (30 Pairs)</option>
</select>
<button id="playBtn" disabled>PLAY</button>
<button id="highScore" style="display: none; height: auto; width: auto;">Submit Highscore</button>
<div id="msgBox"></div>
</header>
<div id="app"></div>
<footer>
<span id="score-box">Attempts: 0 Matches: 0 Average: 0% Score: 0 </span>
<span id="timer-box" style="color:red">00:00 </span>
</footer>
<script src="memory.js"></script>
</div>
</body>
</html>