-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (48 loc) · 1.78 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
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/animate.css">
<link href='http://fonts.googleapis.com/css?family=Crimson+Text' rel='stylesheet' type='text/css'>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header><h1>Tic * Tac * Toe</h1></header>
<div class="row">
<div class="wrapper eight columns">
</div>
<div class="four columns" id="player-panel">
<select name="choose-player" id="choose-player">
<option value="default" selected>Play with human or AI?</option>
<option value="playerGame">Play with two humans</option>
<option value="computerGame">Play against AI</option>
</select>
<select name="choose-board-size" id="choose-board-size">
<option value="3" selected>3 x 3</option>
<option value="4">4 x 4</option>
<option value="5">5 x 5</option>
</select>
<form action="demo_form.asp">
<input type="text" name="player" value="name 1">
<input type="text" name="player" value = "name 2">
<button type="button" id="input-name">submit</button>
</form>
<container class="won">
<div class="wins-message">
<p id="player-one-text">Player 1 Score: </p><p class="wins" id="player-one-wins"><p>
</div>
<div class="wins-message">
<p id="player-two-text">Player 2 Score: </p><p class="wins" id="player-two-wins"></p>
</div>
</container>
<div id="reset">
<div id="message-box"><p>Message box</p></div>
<button type="button" id="save-game">Save game</button>
<button type="button" id="reset-board">Play Again</button>
</div>
</div>
</body>
<script src="js/main.js"></script>
</html>