-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (47 loc) · 1.63 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
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>WDI Project 1</title>
<link href='http://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css" media="screen" charset="utf-8">
<link rel="stylesheet" href="css/game-panel.css" media="screen" charset="utf-8">
<link rel="stylesheet" href="css/setup-panel.css" media="screen" charset="utf-8">
<script src="javascript/underscore-min.js" charset="utf-8"></script>
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="javascript/md5.js" charset="utf-8"></script>
<script src="javascript/utility.js" charset="utf-8"></script>
<script src="javascript/app.js" charset="utf-8"></script>
<script src="javascript/load.js" charset="utf-8"></script>
</head>
<body>
<div class="container">
<h1 id="main-heading">TIC TAC TOE</h1>
<div id="game-setup">
<label for="board-size">Board Size:</label>
<select id="board-size" name="board-size"></select>
<div id="player-setup">
<button type="button" name="add-player-button" id="add-player-button">Add Player</button>
</div>
</div>
<div id="board-wrapper">
</div>
<div class="info-panel">
<div>
<h3>Players:</h3>
<ul id="players">
</ul>
</div>
<div>
<h3>Controls:</h3>
<ul id="controls">
<li id="new-game-button">New Game</li>
<li id="setup-button">Setup</li>
<li id="play-button">Play</li>
<li id="reset-button">Reset</li>
</ul>
</div>
</div>
</div>
</body>
</html>