-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
35 lines (34 loc) · 1.04 KB
/
code.html
File metadata and controls
35 lines (34 loc) · 1.04 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
33
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Forty Shades of Gray</title>
<link rel="stylesheet" type="text/css" href="code.css">
</head>
<body>
<header id="gameTitle">Forty Shades of Gray</header>
<div id="mainTime">
<div id='timeText'>Time</div>
<div id='bestText'>Best Time</div>
<div id='time'>0 : 00</div>
<div id='bestTime'>0 : 00</div>
</div>
<div id="instructions">
<div id='instr'>Click the numbers as quickly as you can</div>
<span class="newGame">New Game</span>
<span class="lvlbtn">Home</span>
</div>
<div id= 'otable'><table id='table'></table></div>
<div id=leaderBoard></div>
<div id="difficulty">
<div id='hometxt'>Home</div>
<div id='easy' class="levels">Easy (3x4)</div>
<div id='medium' class="levels">Medium (4x5)</div>
<div id="hard" class="levels">Hard (5x6)</div>
<div id='lbbutton' class='levels'>Leaderboard</div>
</div>
<table id="bigleaderboard"></table>
<div id='lbhome' class='lvlbtn'>Home<div>
<script src="app.js"></script>
</body>
</html>