-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (25 loc) · 977 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
<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/60s-scoreboard" rel="stylesheet">
</head>
<body>
<div class="container">
<div>
<h3>HOME</h3>
<h1 class="score" id="hscore"> 0 </h1>
<button onclick="home1()"> +1 </button>
<button onclick="home2()"> +2 </button>
<button onclick="home3()"> +3 </button>
</div>
<div>
<h3>GUEST</h3>
<h1 class="score" id="gscore"> 0 </h1>
<button onclick="guest1()">+1</button>
<button onclick="guest2()">+2</button>
<button onclick="guest3()">+3</button>
</div>
</div>
<script src="index.js"></script>
</body>
</html>