-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 1011 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
<!doctype html>
<html lang="en">
<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 class="container">
<div>
<h1>HOME</h1>
<h2 id="home-score">0</h2>
<button onclick="addOnePoint()">+1</button>
<button onclick="addTwoPoints()">+2</button>
<button onclick="addThreePoints()">+3</button>
</div>
<div>
<h1>GUEST</h1>
<h2 id="away-score">0</h2>
<button onclick="addOnePointAway()">+1</button>
<button onclick="addTwoPointsAway()">+2</button>
<button onclick="addThreePointsAway()">+3</button>
</div>
</div>
<script src="index.js"></script>
</body>
</html>