-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (44 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>A Famous Game of Tic-Tac-Toe</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Tic Tac Toe</h1>
<div id="chooseMark">
<span>Choose your Mark:</span>
<button id="chooseX">X</button>
<button id="chooseO">O</button>
</div>
<div id="game">
<div class="cell" data-index="0"></div>
<div class="cell" data-index="1"></div>
<div class="cell" data-index="2"></div>
<div class="cell" data-index="3"></div>
<div class="cell" data-index="4"></div>
<div class="cell" data-index="5"></div>
<div class="cell" data-index="6"></div>
<div class="cell" data-index="7"></div>
<div class="cell" data-index="8"></div>
</div>
<div id="strike" class="strike"></div>
<div id="messageBox" class="message-box"></div>
<button id="reset">Reset the Game</button>
<audio id="winSound">
<source src="win_sound.mp3" type="audio/mpeg">
<!-- Add additional <source> elements for other audio formats if needed -->
Your browser does not support the audio element.
</audio>
<audio id="loseSound">
<source src="lose_sound.mp3" type="audio/mpeg">
<!-- Add additional <source> elements for other audio formats if needed -->
Your browser does not support the audio element.
</audio>
</div>
<script src="script.js"></script>
</body>
</html>