-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Ping Pong Score Keeper</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<div id="scorekeeper">
<img src="tennis.avif" alt="tennis">
<h1>
Ping Pong Score Keeper
</h1>
<div>
<div id="displayScore">
<span id="displayScore1">0</span> to
<span id="displayScore2">0</span>
</div>
<div>Use the buttons below to keep score.</div>
<label for="rounds">Playing To</label>
<select name="rounds" id="rounds">
<option value="1">1</option>
<option value="2">2</option>
<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>
<option value="10">10</option>
</select>
</div>
<div class="buttons">
<button id="score1">+1 Player One</button>
<button id="score2">+1 Player Two</button>
<button id="reset">Reset</button>
</div>
</div>
</main>
</body>
<script src="script.js"></script>
</html>