-
Notifications
You must be signed in to change notification settings - Fork 1
/
tictactoe.html
37 lines (37 loc) · 1.36 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
<html>
<heaad>
<title>Tic Tac Toe</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-1.20.0.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="CSS/style.css">
</head>
<body>
<h1>TIC TAC TOE</h1>
<h2>Unbeatable Bot</h2>
<div class="main"><div class="col-xs-12" id="selector-div">
<h2>X or O ?</h2><hr>
<div class="selector" id="naught"><b>O</b>
</div> <div class="selector" id="cross"><b>X</b></div><hr></div>
<div class="col-xs-12" id="result-output"></div>
<div class="board">
<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></div></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://code.jquery.com/qunit/qunit-1.20.0.js"></script>
<script src="JS/main.js"></script>
<body>
</html>