-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.26 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.26 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
<html>
<head>
<link rel="stylesheet" href="index.css">
<title>Basketball Score</title>
</head>
<body>
<div class="container">
<div>
<h3>HOME</h3>
<div class="card">
<span id="homescore" class="score">0</span>
</div>
<div class="buttons">
<button class="plusone btn" onclick="plusOne()">+1</button>
<button class="plustwo btn" onclick="plusTwo()">+2</button>
<button class="plusthree btn" onclick="plusThree()">+3</button>
</div>
</div>
<div>
<h3>OPPONENT</h3>
<div class="card">
<span id="guestscore" class="score">0</span>
</div>
<div class="buttons">
<button class="plusone btn" onclick="plusOneG()">+1</button>
<button class="plustwo btn" onclick="plusTwoG()">+2</button>
<button class="plusthree btn" onclick="plusThreeG()">+3</button>
</div>
</div>
</div>
<button id="reset" class="btn">Reset</button>
<script src="index.js"></script>
</body>
</html>