forked from makersacademy/bowling-challenge
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
69 lines (62 loc) · 2.15 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<html>
<head>
<title>Interactive Bowling Game</title>
<!-- <link href='./css/reset.css' rel='stylesheet' type='text/css'> -->
<link href='public/css/style.css' rel='stylesheet' type='text/css'>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Luckiest+Guy" rel="stylesheet">
<script src='src/frame.js'></script>
<script src='src/game.js'></script>
<script src='interface.js'></script>
</head>
<body>
<div id='title' class='title'><h1>Bowl'd Away</h1></div>
<div id='buttons' class='buttons'></div><br>
<div id='scoresheet'>
<table id='scoresheetTable' class='scoresheet' cellpadding='1' cellspacing='0'>
<tr>
<th colspan='6'>Frame 1</th>
<th colspan='6'>Frame 2</th>
<th colspan='6'>Frame 3</th>
<th colspan='6'>Frame 4</th>
<th colspan='6'>Frame 5</th>
<th colspan='6'>Frame 6</th>
<th colspan='6'>Frame 7</th>
<th colspan='6'>Frame 8</th>
<th colspan='6'>Frame 9</th>
<th colspan='6'>Frame 10</th>
</tr>
<tr>
<td colspan='3'></td><td colspan='3'></td>
<td colspan='3'></td><td colspan='3'></td>
<td colspan='3'></td><td colspan='3'></td>
<td colspan='3'></td><td colspan='3'></td>
<td colspan='3'></td><td colspan='3'></td>
<td colspan='3'></td><td colspan='3'></td>
<td colspan='3'></td><td colspan='3'></td>
<td colspan='3'></td><td colspan='3'></td>
<td colspan='3'></td><td colspan='3'></td>
<td colspan='2'></td><td colspan='2'></td><td colspan='2'></td>
</tr>
<tr>
<td colspan='6'></td>
<td colspan='6'></td>
<td colspan='6'></td>
<td colspan='6'></td>
<td colspan='6'></td>
<td colspan='6'></td>
<td colspan='6'></td>
<td colspan='6'></td>
<td colspan='6'></td>
<td colspan='6'></td>
</tr>
</table>
</div>
<div id='score'>
<p></p>
</div><br>
<div id='restart'>
<button id='restart-button' type='button'>Restart Game</button>
</div>
</body>
</html>