-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (90 loc) · 3.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tic Tac Code</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap-theme.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<link href="http://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Cabin" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<h1>Sorry in advance</h1>
<!-- <ul class="nav navbar-nav navbar-right">
<input id="email" type="text" placeholder="email">
<input id="password" type="password" placeholder="password">
<button class="btn-info"id="register" type="button" value="Register">Register</button>
<button class="btn-info" id="login" type="button" value="Login">Login</button><br>
<label for="token">Token:</label>
<input id="token" type="text">
<label for="id">Id:</label>
<input type="text" id="id">
<label for="index">Index:</label>
<input type="text" id="index">
<label for="value">Value:</label>
<input type="text" id="value">
</ul> -->
</nav>
<div class="container-fluid">
<div class="left col-md-3"> <!-- formerly leftsidebar -->
<h1>Try Me</h1>
<button type="button" class="randomPlay btn btn-info">
<p>Random Move</p>
</button>
<div class="playerHistory">
<h3>Winner History</h3>
</div>
<button type="button" class="newGame btn btn-info">
<p>New Game</p>
</button>
</div> <!-- end leftsidebar -->
<div class="center col-md-6"> <!-- formery games -->
<div class="wrapper">
<h1>Tic Tac Toe</h1>
<div id="gameboard">
<table class="table">
<tr>
<td class="cell" id= "1"></td>
<td class="cell" id= "2"></td>
<td class="cell" id= "3"></td>
</tr>
<tr>
<td class="cell" id= "4"></td>
<td class="cell" id= "5"></td>
<td class="cell" id= "6"></td>
</tr>
<tr>
<td class="cell" id= "7"></td>
<td class="cell" id= "8"></td>
<td class="cell" id= "9"></td>
</tr>
</table><br>
</div><br>
<button type="button" class="clear btn btn-default">Clear Board</button>
<div class="playerOne">
</div>
<div class="playerTwo">
</div>
</div> <!-- end wrap -->
</div> <!-- end games -->
<div class="aside col-md-3"> <!-- formerly aside -->
<h1>User Output</h1>
</div>
</div> <!-- end main body -->
<footer class="footer">
© 2015, Cara Clarke<br>
WDI Project One<br>
I hope you enjoyed my ridiculous game
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- javascript -->
<script src="game.js" type="text/javascript" charset="utf-8" async defer></script>
</body>
</html>