-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (34 loc) · 1.07 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
31
32
33
34
35
36
37
38
39
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div>
<h3>HOME</h3>
</div>
<div>
<h3>GUEST</h3>
</div>
</div>
<div class="points">
<p id="home-el"></p>
<p id="guest-el"></p>
</div>
<div class="buttons">
<span class="home">
<button onclick="homeAdd1()">+1</button>
<button onclick="homeAdd2()">+2</button>
<button onclick="homeAdd3()">+3</button>
<button onclick="homeReset()">Reset</button>
</span>
<span class="guest">
<button onclick="guestAdd1()">+1</button>
<button onclick="guestAdd2()">+2</button>
<button onclick="guestAdd3()">+3</button>
<button onclick="guestReset()">Reset</button>
</span>
</div>
<script src="index.js"></script>
</body>
</html>