-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 1.73 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
44
45
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="css/styles.css" rel="stylesheet" type="text/css">
<script src="js/jquery-3.2.0.js"></script>
<script src="js/scripts.js"></script>
<title>Zim-Dib-Gir</title>
</head>
<body>
<div class="container">
<div class="header jumbotron">
<h1>Zim-Dib-Gir</h1>
</div>
<div class="row well">
<table>
<tr>
<td class="clickable" id="sq1"><button class="1" value="1"></button></td>
<td class="clickable" id="sq2"><button class="2" value="2"></button></td>
<td class="clickable" id="sq3"><button class="3" value="3"></button></td>
</tr>
<tr>
<td class="clickable" id="sq4"><button class="4" value="4"></button></td>
<td class="clickable" id="sq5"><button class="5" value="5"></button></td>
<td class="clickable" id="sq6"><button class="6" value="6"></button></td>
</tr>
<tr>
<td class="clickable" id="sq7"><button class="7" value="7"></button></td>
<td class="clickable" id="sq8"><button class="8" value="8"></button></td>
<td class="clickable" id="sq9"><button class="9"
value="9"></button></td>
</tr>
</table>
<p>Play this game like Tic-Tac-Toe.</p>
<p>Click a square to claim.</p>
<p>Zim goes first.</p>
<p>Take turns.</p>
<p>Bring about- or prevent- DOOM</p>
<button type="button" id="comp">All alone? Play the Computer!</button>
<button type="button" id="refresh">Start Again!!</button>
</div>
</div>
</body>
</html>