-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (54 loc) · 2.32 KB
/
index.html
File metadata and controls
55 lines (54 loc) · 2.32 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tic - Tac - Toe</title>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery.js"></script>
<script src="js/lodash.js"></script>
<script src="js/dom.js"></script>
<script src="js/tic-tac-toe.js"></script>
</head>
<body>
<h1>Tic - Tac - Toe</h1>
<div class="container">
<div class = "left-side">
<div class = 'game-options'>
<h3>Players Enter Names</h3>
<section class="player1">
<input class = "input name1" type="text" placeholder="Enter Player 1 Name">
<button class = "join1 button">Join</button>
</section>
<section class="player2">
<input class = "input name2" type="text" placeholder="Enter Player 2 Name">
<button class = "join2 button">Join</button>
</section>
<section class = 'buttons'>
<button class = "start button">Start Game</button>
<button class = "next-round button">Next Round</button>
<button class = "reset-full button">Restart Full Game - New Players, New Scores</button>
</section>
</div>
</div>
<div class="right-side">
<div class = "game-board x hold-for-start">
<div class="press-start">Press "Start Game" To Play</div>
<div class = "vertical-lines"></div>
<div class = "horizontal-lines"></div>
<div class = "square position00"></div>
<div class = "square position01"></div>
<div class = "square position02"></div>
<div class = "square position10"></div>
<div class = "square position11"></div>
<div class = "square position12"></div>
<div class = "square position20"></div>
<div class = "square position21"></div>
<div class = "square position22"></div>
</div>
</div>
</div>
</body>
</html>