-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 1.1 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
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link href="https://fonts.cdnfonts.com/css/cursed-timer-ulil" rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div>
<h3>HOME</h3>
<h2 id="home-score">0</h2>
<button button id = "home-1-pt" onclick=homeScores(1)>+1</button>
<button button id = "home-2-pt" onclick=homeScores(2)>+2</button>
<button button id = "home-3-pt" onclick=homeScores(3)>+3</button>
</div>
<div>
<h3>GUEST</h3>
<h2 id="guest-score">0</h2>
<button button id = "guest-1-pt" onclick=guestScores(1)>+1</button>
<button button id = "guest-2-pt" onclick=guestScores(2)>+2</button>
<button button id = "guest-3-pt" onclick=guestScores(3)>+3</button>
</div>
</div>
<script src="index.js"></script>
</body>
</html>