-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (44 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<title>Wordsy</title>
<link rel="stylesheet" href="style.css" type="text/css" media="all">
<script type="text/javascript" src="wordsy.js"></script>
<meta charset="utf-8">
</head>
<body>
<h1>Wordsy</h1>
<div id="topMatter">
<button onclick="nextRound()" id="deal">Deal</button>
<button onclick="startTimer()" id="timer">Start timer</button>
<h2 id="turn">Round: </h2>
</div>
<table id="table">
<tr>
<td id="1"> </td>
<td id="3"> </td>
<td id="5"> </td>
<td id="7"> </td>
</tr>
<tr>
<td id="2"> </td>
<td id="4"> </td>
<td id="6"> </td>
<td id="8"> </td>
</tr>
<tfoot>
<tr>
<th>5</th>
<th>4</th>
<th>3</th>
<th>2</th>
</tr>
</tfoot></table>
</table>
<div id="rules">
<a href="rules.pdf">Official rules</a>
<p id="roundRules"></p>
</div>
<embed src="./beep.wav" autostart="false" width="0" height="0" id="beep" enablejavascript="true">
</body>
</html>