-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.19 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
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div class="home">
<h3 class="htext">HOME</h3>
<div class="homescore">
<span id="sumHp"></span>
</div>
<div class="hpointsbutton">
<button class="b1" onclick="hb1()">+1</button>
<button class="b2" onclick="hb2()">+2</button>
<button class="b3" onclick="hb3()">+3</button>
</div>
</div>
<div class="away">
<h3 class="gtext">AWAY</h3>
<div class="guestscore">
<span id="sumGp"></span>
</div>
<div class="gpointsbutton">
<button class="bg1" onclick="gpb1()">+1</button>
<button class="bg2" onclick="gpb2()">+2</button>
<button class="bg3" onclick="gpb3()">+3</button>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>