-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (34 loc) · 987 Bytes
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
<html>
<head>
<title>
Tic-Tac-Toe Game
</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Let's Play Tic-Tac-Toe!</h1>
<div id="display-message">You start...</div>
<div class="flex-game">
<div id=0 class="section">
</div>
<div id=1 class="section">
</div>
<div id=2 class="section">
</div>
<div id=3 class="section">
</div>
<div id=4 class="section">
</div>
<div id=5 class="section">
</div>
<div id=6 class="section">
</div>
<div id=7 class="section">
</div>
<div id=8 class="section">
</div>
</div>
<input type="button" value="Restart" id="restart"/>
<script src="tictactoe.js" type="text/javascript"></script>
</body>
</html>