-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (26 loc) · 866 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Score Keeper</title>
</head>
<body>
<H1>Score Keeper</H1>
<h1><span id="p1Display">0</span> to <span id="p2Display">0</span></h1>
<select name="MaxScore" id="winningScore">
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
</select>
<button id="p1Button">+1 for Player1</button>
<button id="p2Button">+1 for Player2</button>
<button id="resetButton">Reset</button>
<script src="app.js"></script>
</body>
</html>