forked from Diego-of-Bayan/tictactoe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (48 loc) · 1.69 KB
/
index.html
File metadata and controls
54 lines (48 loc) · 1.69 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Tic Tac Toe Project</title>
<!-- Link CSS here -->
<link type='text/css' rel='stylesheet' href='css/style.css' />
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
</head>
<body>
<h1>Tic Tac Toe</h1>
<div class="turns">Turns:<span class="nOfTurns"></span></div>
<div class="parent">
<div class="container">
<div id="tile1" class="tile right bottom">
<button id="button1">Move</button>
</div>
<div id="tile2" class="tile right bottom">
<button id="button2">Move</button>
</div>
<div id="tile3" class="tile bottom">
<button id="button3">Move</button>
</div>
<div id="tile4" class="tile right bottom">
<button id="button4">Move</button>
</div>
<div id="tile5" class="tile right bottom">
<button id="button5">Move</button>
</div>
<div id="tile6" class="tile bottom">
<button id="button6">Move</button>
</div>
<div id="tile7" class="tile right">
<button id="button7">Move</button>
</div>
<div id="tile8" class="tile right">
<button id="button8">Move</button>
</div>
<div id="tile9" class="tile">
<button id="button9">Move</button>
</div>
</div>
</div>
<!-- Link JQuery here -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Link script.js here -->
<script src='js/script.js'></script>
</body>
</html>