-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path0x.html
44 lines (44 loc) · 1.29 KB
/
0x.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
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<!-- ProgSoc Git Workshop 2024 -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>0s & Xs</title>
</head>
<body>
<header>
<h1>0s & Xs</h1>
</header>
<main>
<fieldset>
<legend>Board</legend>
<table>
<tr>
<td><button id="hole_0">?</button></td>
<td><button id="hole_1">?</button></td>
<td><button id="hole_2">?</button></td>
</tr>
<tr>
<td><button id="hole_3">?</button></td>
<td><button id="hole_4">?</button></td>
<td><button id="hole_5">?</button></td>
</tr>
<tr>
<td><button id="hole_6">?</button></td>
<td><button id="hole_7">?</button></td>
<td><button id="hole_8">?</button></td>
</tr>
</table>
<p>System Message.</p>
<button id="restart_button" disabled>Restart</button>
</fieldset>
</main>
<hr/>
<footer>
<p>Part of the ProgSoc <em>Beginners' Git</em> Workshop, 6pm 27th March 2024.</p>
<p>See Also: <a href="./guide.md">guide.md</a>, <a href="./README.md">README.md</a>.</p>
<p>Source: <<a href="https://github.com/ProgSoc/Git2024">https://github.com/ProgSoc/Git2024</a>></p>
</footer>
</body>
</html>