-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (95 loc) · 2.48 KB
/
index.html
File metadata and controls
105 lines (95 loc) · 2.48 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<title>Word Scramble</title>
<link href="css/gameStyle.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="home-scene">
<button id="play-button">Play</button>
<button id="score-button">High Scores</button>
</div>
<div id="score-scene">
<button id="score-home-button">Home</button>
</div>
<div id="map-scene">
<button id="map-home-button">Home</button>
<div id="levelcont">
<table id="tLevels">
</table>
</div>
</div>
<div id="game-scene">
<button id="game-home-button">Home</button><br><br>
<button id="game-map-button">Map</button>
<div class="container">
<div class="header">
<table id="thead">
<tr>
<td> Round :</td>
<td> <span id="round">1</span></td>
<td> Score :</td>
<td><span id="score">0</span></td>
<td> Timer :</td>
<td><span id="countdown" class="timer"></span></td>
<td><button type="button" id="pause"></button></td>
</tr>
</table>
</div>
<div class="body">
<div id="tRight">
<table id="tRBody">
<tr>
<td>H</td>
<td>O</td>
<td>T</td>
</tr>
<tr>
<td>h</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td>l</td>
</tr>
</table>
</div>
</div>
<div class="footer">
<table id="tContent">
<tr>
<td>
<button type="button" id="Resetbtn">Reset</button>
</td>
<td>
<input type="text" id="inputText" readonly="readonly">
</td>
<td>
<button type="button" id="checkbtn">Check</button>
</td>
</tr>
</table>
<table id="tfooter">
<tr>
<td>H</td>
<td>O</td>
<td>T</td>
<td>a</td>
<td>e</td>
<td>l</td>
</tr>
</table>
</div>
</div>
</div>
<div id="win-scene">
<button id="next-button">next</button>
</div>
<script src="js/index.js" type="module"></script>
</body>
</html>