-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (54 loc) · 2.55 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Tic Tac Toe (Final)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tic Tac Toe</title>
<link href="https://fonts.googleapis.com/css?family=Abril+Fatface|Shadows+Into+Light" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://fastcdn.org/Animate.css/3.4.0/animate.min.css" rel="stylesheet">
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css'>
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Tic Tac Toe</h1>
<!--Tic Tac Toe Frame-->
<div class="container master-container pieces-font">
<!--Tic Tac Toe Row 1-->
<div class="row">
<div class="cell col-xs-4 center no-border-top no-border-left" id="0"></div>
<div class="cell col-xs-4 center no-border-top" id="1"></div>
<div class="cell col-xs-4 center no-border-top no-border-right" id="2"></div>
</div>
<!--Tic Tac Toe Row 2-->
<div class="row">
<div class="cell col-xs-4 center no-border-left" id="3"></div>
<div class="cell col-xs-4 center" id="4"></div>
<div class="cell col-xs-4 center no-border-right" id="5"></div>
</div>
<!--Tic Tac Toe Row 3-->
<div class="row">
<div class="cell col-xs-4 center no-border-bottom no-border-left" id="6"></div>
<div class="cell col-xs-4 center no-border-bottom" id="7"></div>
<div class="cell col-xs-4 center no-border-bottom no-border-right" id="8"></div>
</div>
</div>
<div class="victory-defeat-screen">
<div class="text"></div>
<button onclick="chooseTeam()">Replay</button>
</div>
<div class="computer-thinking" style="font-size: 5vmax; padding: 25px;">
The computer is thinking.
<div class="computer-thinking-text"></div>
</div>
<!--jQuery Dialogue Box-->
<div class="dialog-box-size" id="dialog-box">Please choose either "x" or "o".</div>
<div class="dialog-box-size" id="first-move-box">Who goes first?</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/systemjs-plugin-json/0.3.0/json.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>