-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (30 loc) · 1016 Bytes
/
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
33
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="index.css">
<link href="https://fonts.cdnfonts.com/css/cursed-timer-ulil" rel="stylesheet">
</head>
<body>
<div id="main">
<div class="container">
<div>
<h3>HOME</h3>
<h2 id="home" class="score">0</h2>
<button onclick="plusOne()">+1</button>
<button onclick="plusTwo()">+2</button>
<button onclick="plusThree()">+3</button>
</div>
<div>
<h3 >GUEST</h3>
<h2 id="guest" class="score">0</h2>
<button onclick="plusOne2()">+1</button>
<button onclick="plusTwo2()">+2</button>
<button onclick="plusTwo2()">+3</button>
</div>
</div>
<div id="reset-btn">
<button id="reset" onclick="reset()">RESET</button>
</div>
</div>
<script src="index.js"></script>
</body>
</html>