-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
111 lines (90 loc) · 1.86 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
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
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<title>Horse Racing</title>
<link rel="stylesheet" href="game.css" />
</head>
<body>
<div id="horse1" class="horse standRight horseRight">
<div class="rider">
<div class="head">
</div>
<div class="body">
</div>
</div>
</div>
<div id="horse2" class="horse standRight">
<div class="rider">
<div class="head">
</div>
<div class="body">
</div>
</div>
</div>
<div id="horse3" class="horse standRight">
<div class="rider">
<div class="head">
</div>
<div class="body">
</div>
</div>
</div>
<div id="horse4" class="horse standRight">
<div class="rider">
<div class="head">
</div>
<div class="body">
</div>
</div>
</div>
<div class="track">
<div id="startline">
</div>
<div class="inner">
<button id="start">
Start Race
</button>
<div id="bet">
<p>You currently have <span id="funds">100</span></p>
<label>Bet Amount (£)</label>
<input type="number" value="1" id="amount">
<label>Laps</label>
<input type="number" value="1" id="laps">
<label>Bet on horse:</label>
<select id="bethorse">
<option value="horse1">White</option>
<option value="horse2">Blue</option>
<option value="horse3">Green</option>
<option value="horse4">Brown</option>
</select>
</div>
<img src="images/tree.png" class="tree" />
<table id="results">
<thead>
<tr>
<th>Results</th>
<th></th>
</tr>
</thead>
<tr>
<td>1st</td>
<td class="horse1"></td>
</tr>
<tr>
<td>2nd</td>
<td class="horse2"></td>
</tr>
<tr>
<td>3rd</td>
<td class="horse3"></td>
</tr>
<tr>
<td>4th</td>
<td class="horse4"></td>
</tr>
</table>
</div>
</div>
<script src="game.js"></script>
</body>
</html>