-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgame.html
More file actions
29 lines (29 loc) · 862 Bytes
/
Copy pathgame.html
File metadata and controls
29 lines (29 loc) · 862 Bytes
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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>NUMBER ORDER GAME - Playing</title>
<link href="gameStyle.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="cardList">
</div>
<div class="topbar">
<button id="game-button" disabled></button>
<p id="game-text"> Choose a diffic<span id="secret">u</span>lty!</p>
</div>
<div class="difficulty">
<button id="easy">Easy - 7 Digits</button>
<button id="normal">Normal - 10 Digits</button>
<button id="hard">Hard - 15 Digits</button>
<button id="ultimate">Ultimate - 50 Digits</button>
</div>
<div id="result-text">
Suddenly...div!
</div>
<div class="reset">
<button id="reset-game">Try again?</button>
</div>
</body>
<script src="gameScript.js"></script>
</html>