-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 1.13 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
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div class="column-container">
<h3>Luca Goers</h3>
<img src="LucaGoers.webp">
<!--adding comment to try and mess with using Github desktop commits -->
<h4 id="visitor-score" class="score">0</h4>
<button onclick="incrementScore('visitor', 1)">+1</button>
<button onclick="incrementScore('visitor', 2)">+2</button>
<button onclick="incrementScore('visitor', 3)">+3</button>
</div>
<div class="column-container">
<h3>Besaid Aurochs</h3>
<img src="BesaidAurochs.png">
<h4 id="home-score" class="score">0</h4>
<button onclick="incrementScore('home', 1)">+1</button>
<button onclick="incrementScore('home', 2)">+2</button>
<button onclick="incrementScore('home', 3)">+3</button>
</div>
</div>
</div>
<script src="index.js">
</script>
</body>
</html>