-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (58 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- stylesheets -->
<link rel="stylesheet" type="text/css" href="tictactoe.css">
<link rel="stylesheet" type="text/css" href="https://meyerweb.com/eric/tools/css/reset/reset.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- scripts -->
<script src="animations.js"></script>
<script src="tictactoe.js"></script>
<script src="minimax.js"></script>
<title>Test</title>
</head>
<body>
<!-- <header>this is the header</header> -->
<main>
<div class="namesContainer">
<div class="websiteTitle">TicTacToe</div>
<div class="box box1">
<span>
<input class="underline" type="text" id="player1" placeholder="player 1" spellcheck="false">
</span>
</div>
<p>v.</p>
<div class="box box2">
<span class="spanA">
<input type="text" id="player2" placeholder="player 2" spellcheck="false">
<i class="fa fa-angle-double-up playerSwitch"></i>
</span>
<span class="spanB">
<p id="bot">bot</p>
<i class="fa fa-angle-double-down playerSwitch"></i>
</span>
</div>
</div> <!--- end of namescontainer --->
</div>
<div class="gameboard">
<div class="gameboardSpot" id ="spot1"></div>
<div class="gameboardSpot" id ="spot2"></div>
<div class="gameboardSpot" id ="spot3"></div>
<div class="gameboardSpot" id ="spot4"></div>
<div class="gameboardSpot" id ="spot5"></div>
<div class="gameboardSpot" id ="spot6"></div>
<div class="gameboardSpot" id ="spot7"></div>
<div class="gameboardSpot" id ="spot8"></div>
<div class="gameboardSpot" id ="spot9"></div>
</div>
<div class="modalBox">
<div class="buttonsContainer">
<button id="resetButton">replay</button>
</div>
</div>
</main>
<footer>the is the footer</footer>
</body>
</html>