-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscoreboard.html
35 lines (31 loc) · 1.03 KB
/
scoreboard.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
<!DOCTYPE html>
<html>
<head>
<title>Scoreboard Applet</title>
<link href="scoreboard.css" rel="stylesheet" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="scoreboard.js"></script>
</head>
<body>
<div class="score away">0</div>
<div class="score home">0</div>
<div class="clock"></div>
<br/>
<div class="controls">
<button class="increment-away">+</button>
<button class="decrement-away">-</button>
<button class="reset-away">RESET</button>
</div>
<div class="controls">
<button class="increment-home">+</button>
<button class="decrement-home">-</button>
<button class="reset-home">RESET</button>
</div>
<div class="controls">
<button class="start-clock">START</button>
<button class="pause-clock">PAUSE</button>
<button class="reset-clock">RESET</button>
<input type="text" id="t" value="180">
</div>
</body>
</html>