-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (41 loc) · 2.16 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
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<title>🎲 Board Game - Scoreboard 🎲</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h3>🎲 Board Game - Scoreboard 🎲</h3>
<div style="height:300px"><canvas id="chart"></canvas></div>
<table id="table">
<thead>
<tr id="player">
<th>
<span class="iconleft" title="Remove the last player from the scoreboard." onclick="window.setPlayers(-1);">➖</span>
Player
<span class="iconright" title="Add another player to the scoreboard." onclick="window.setPlayers(+1);">➕</span>
</th>
</tr>
<tr id="score">
<th>
<span class="iconleft" title="Clear the scoreboard." onclick="window.setPlayers(0);">🗑️</span>
Score
</th>
</tr>
</thead>
<tbody id="scores"></tbody>
</table>
<p>
<span onclick="window.location.assign('https://twitter.com/mazgch/');" title="Twitter @mazgch"><i data-feather="twitter"></i></span>
<span onclick="window.location.assign('https://www.linkedin.com/in/michael-ammann/');" title="LinkedIn"><i data-feather="linkedin"></i></span>
<span onclick="window.location.assign('https://github.com/mazgch/score');" title="Github Project Documentation"><i data-feather="github"></i></span>
<span onclick="window.location.assign('https://www.youtube.com/channel/UCV1z0WOR0mUQBgaoGeRahWg');" title="Youtube"><i data-feather="youtube"></i></span>
<br>© 2023 @mazgch
</p>
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.0/dist/chart.umd.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons@4.29.0/dist/feather.min.js"></script>
</body>
</html>