-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (31 loc) · 1.12 KB
/
index.html
File metadata and controls
37 lines (31 loc) · 1.12 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
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div>
<h3>HOME</h3>
<p id="homescore" class="score">0</p>
<div class="scorechanger">
<button onclick="plusOneH()">+1</button>
<button onclick="plusTwoH()">+2</button>
<button onclick="plusThreeH()">+3</button>
</div>
</div>
<div>
<h3>GUEST</h3>
<p id="guestscore" class="score">0</p>
<div class="scorechanger">
<button onclick="plusOne()">+1</button>
<button onclick="plusTwo()">+2</button>
<button onclick="plusThree()">+3</button>
</div>
</div>
</div>
<div id="resetBtn">
<button onclick="reset()">Reset</button>
</div>
<script src="index.js"></script>
</body>
</html>