-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (55 loc) · 1.83 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
<!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="style.css">
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
</head>
<body>
<div id="container">
<div id="startingPage">
<h2>Tic Tac Toe</h2>
<div id="line"></div>
<h4>Select any of them you want....</h4>
<div id="button">
<button id="playerX" class="choose"><b>Player X </b></button>
<button id="playerO" class="choose"><b>Player O </b></button>
</div>
</div>
<div id="mainPage">
<div id="headerBtns">
<button id="">X Turn</button>
<button id="O_Turn">O Turn</button>
<div id="showChange"></div>
</div>
<div id="gameBoard">
<div class="boxes"></div>
<div class="boxes"></div>
<div class="boxes"></div>
<div class="boxes"></div>
<div class="boxes"></div>
<div class="boxes"></div>
<div class="boxes"></div>
<div class="boxes"></div>
<div class="boxes"></div>
</div>
</div>
<div id="right-col">
<img id="icon" src="Play.png">
<p>Click Here To Listen</p>
</div>
<div id="winner">
<h2 id="winnerName">Player X Win The Game!</h2>
<div id="button">
<button id="quit">Play Again</button>
</div>
</div>
</div>
<audio id="mySong" loop="true">
<source src = "relax.mp3" type="audio/mp3">
</audio>
<script src="main.js"></script>
</body>
</html>