-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
executable file
·52 lines (51 loc) · 2.68 KB
/
Copy pathIndex.html
File metadata and controls
executable file
·52 lines (51 loc) · 2.68 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
<html>
<head>
<title>TheBowlingGameKata</title>
<link rel="stylesheet" type="text/css" href="styles.css" media="screen"/>
<script src="lib/jquery-1.4.4.min.js" type="text/javascript"></script>
<script src="src/js/bowling_game.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="styles/style.css" />
</head>
<body>
<h2>Welcome to ten pin bowling!</h2>
<table>
<tr>
<th>Frame 1</th>
<th>Frame 2</th>
<th>Frame 3</th>
<th>Frame 4</th>
<th>Frame 5</th>
<th>Frame 6</th>
<th>Frame 7</th>
<th>Frame 8</th>
<th>Frame 9</th>
<th>Frame 10</th>
</tr>
<tr>
<td><input type="button" value="Roll!"/><p class="frame1Score1"/></td>
<td><input type="button" value="Roll!"/><p class="frame2Score1"/></td>
<td><input type="button" value="Roll!"/><p class="frame3Score1"/></td>
<td><input type="button" value="Roll!"/><p class="frame4Score1"/></td>
<td><input type="button" value="Roll!"/><p class="frame5Score1"/></td>
<td><input type="button" value="Roll!"/><p class="frame6Score1"/></td>
<td><input type="button" value="Roll!"/><p class="frame7Score1"/></td>
<td><input type="button" value="Roll!"/><p class="frame8Score1"/></td>
<td><input type="button" value="Roll!"/><p class="frame9Score1"/></td>
<td><input type="button" value="Roll!"/><p class="frame10Score1"/></td>
</tr>
<tr>
<td><input type="button" value="Roll!"/><p class="frame1Score2"/></td>
<td><input type="button" value="Roll!"/><p class="frame2Score2"/></td>
<td><input type="button" value="Roll!"/><p class="frame3Score2"/></td>
<td><input type="button" value="Roll!"/><p class="frame4Score2"/></td>
<td><input type="button" value="Roll!"/><p class="frame5Score2"/></td>
<td><input type="button" value="Roll!"/><p class="frame6Score2"/></td>
<td><input type="button" value="Roll!"/><p class="frame7Score2"/></td>
<td><input type="button" value="Roll!"/><p class="frame8Score2"/></td>
<td><input type="button" value="Roll!"/><p class="frame9Score2"/></td>
<td><input type="button" value="Roll!"/><p class="frame10Score2"/></td>
</tr>
</table>
<p class="frame1">Total Score: <p class="totalScore"/></p>
</body>
</html>