-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (41 loc) · 1.32 KB
/
index.html
File metadata and controls
43 lines (41 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Basket Ball Score Board</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>
<body>
<div class="container">
<div class="team">
<div class="score-view score-view-1">
<span id="score-counter">0</span>
</div>
<div class="title">
<h4>Zambia</h4>
</div>
<div class="score-box">
<div class="score" onclick="updateScore(1)">+ 01</div>
<div class="score" onclick="updateScore(2)">+ 02</div>
<div class="score" onclick="updateScore(3)">+ 03</div>
</div>
</div>
<div class="team">
<div class="score-view">
<span id="score-counter-2">0</span>
</div>
<div class="title">
<h4>Democratic Republic of Congo</h4>
</div>
<div class="score-box">
<div class="score" onclick="updateScoreSecond(1)">+ 01</div>
<div class="score" onclick="updateScoreSecond(2)">+ 02</div>
<div class="score" onclick="updateScoreSecond(3)">+ 03</div>
</div>
</div>
</div>
<div id="reset" onclick="reset()">Reset</div>
</body>
</html>