-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (51 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="JS.js" defer></script>
<title>Tic Tac Toe</title>
</head>
<body>
<div class="opponentPicking">
<h1>Pick your opponent</h1>
<div class="oponentbtn">
<button >Computer</button>
<button>Friend</button>
</div>
</div>
<div class="playersNames">
<form>
<div>
<label for="xPlayer">First Player Name:</label>
<input type="text" id="xPlayer" name="xPlayer" required>
<span class='error' aria-live="polite"></span>
</div>
<div>
<label for="oPlayer">Second Player Name:</label>
<input type="text" id="oPlayer" name="oPlayer" required>
<span class='error' aria-live="polite"></span>
</div>
</form>
<button class="play">play</button>
</div>
<button class="restart">restart</button>
<div class="scoore">
<p id="pA"></p>
<p id="pB"></p>
</div>
<div class="gameboard">
<div id="0" ></div>
<div id="1" ></div>
<div id="2" ></div>
<div id="3"></div>
<div id="4"></div>
<div id="5"></div>
<div id="6"></div>
<div id="7"></div>
<div id="8"></div>
</div>
</body>
</html>