-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 1.05 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
<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 class="container">
<div>
<h3>HOME</h3>
<div id="hscore-el">
<div id="home-el"></div>
</div>
<button onclick="hplus1()">+1</button>
<button onclick="hplus2()">+2</button>
<button onclick="hplus3()">+3</button>
</div>
<div>
<h3>AWAY</h3>
<div id="gscore-el">
<div id="guest-el"></div>
</div>
<button onclick="gplus1()">+1</button>
<button onclick="gplus2()">+2</button>
<button onclick="gplus3()">+3</button>
</div>
</div>
<script src="index.js"></script>
</body>
</html>