-
Notifications
You must be signed in to change notification settings - Fork 0
/
tictactoe.html
50 lines (46 loc) · 1.22 KB
/
tictactoe.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>
<head>
<title>Tic Tac Toe</title>
<link href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/bootstrap.css" rel="stylesheet">
<link href="tictactoe.css" type="text/css" rel="stylesheet" />
<script src="tictactoe.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
</head>
<body>
<div class="nav">
<div class="container">
<ul class="pull-left">
<li><a href="index.html">HOME</a></li>
</ul>
<ul class="pull-right">
<li><a href="slidingpuzzle.html">SLIDING PUZZLE</a></li>
<li><a href="tictactoe.html">TIC TAC TOE</a></li>
</ul>
</div>
</div>
<div class="jumbotron">
<div class="puzzletext">
<h1>Welcome to the Tic Tac Toe.</h1>
</div>
<div class="row">
<div class="col-md-3">
</div>
<div class="col-md-6">
<div id="total">
<div id="puzzlearea">
</div>
<div id="comp">
<p></p>
</div>
<div id="start">
<button type="button" class="prettybutton" id="gamestart">START</button>
</div>
</div>
</div>
<div class="col-md-3">
</div>
</div>
</div>
<body>
</html>