-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
88 lines (86 loc) · 2.54 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
77
78
79
80
81
82
83
84
85
86
87
88
<!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>
<script
src="https://use.fontawesome.com/releases/v5.14.0/js/all.js"
data-auto-a11y="true"
></script>
<link
href="https://fonts.googleapis.com/css2?family=Righteous&display=swap"
rel="stylesheet"
/>
<link rel="shortcut icon" href="./favicon/board.png">
<link rel="stylesheet" type="text/css" href="stylesheet.css" />
<script src="script.js" defer></script>
</head>
<body>
<div class="menu">
<h1 class="game-name">Tic Tac Toe</h1>
<button class="start">Start Game</button>
</div>
<div class="name">
<form>
<label for="name">Player 1</label>
<input
type="text"
id="player-1"
placeholder="Enter Name"
autocomplete="off"
required
/><br />
<label for="name">Player 2</label>
<input
type="text"
id="player-2"
placeholder="Enter Name"
autocomplete="off"
required
/><br />
<input type="submit" value="Submit" />
</form>
</div>
<div class="game invisible">
<table class="board-one">
<tr>
<td class="cell"><div></div></td>
<td class="cell"><div></div></td>
<td class="cell"><div></div></td>
</tr>
<tr>
<td class="cell"><div></div></td>
<td class="cell"><div></div></td>
<td class="cell"><div></div></td>
</tr>
<tr>
<td class="cell"><div></div></td>
<td class="cell"><div></div></td>
<td class="cell"><div></div></td>
</tr>
</table>
<table class="board-two">
<tr>
<td class="square"><div></div></td>
<td class="square"><div></div></td>
<td class="square"><div></div></td>
</tr>
<tr>
<td class="square"><div></div></td>
<td class="square"><div></div></td>
<td class="square"><div></div></td>
</tr>
<tr>
<td class="square"><div></div></td>
<td class="square"><div></div></td>
<td class="square"><div></div></td>
</tr>
</table>
<button class="restart">
Restart<i class="fas fa-redo" id="icon"></i>
</button>
<p id="player-turn"></p>
</div>
</body>
</html>