-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (64 loc) · 2.13 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
<!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 Game</title>
<link rel="stylesheet" href="Multi.css">
</head>
<body>
<div class="msgContainer hide">
<p id="para">Winner</p>
</div>
<main>
<h1 style="color: white;">Welcome to Tic Tac Toe </h1>
<div class="gameInfo">
<img src="./Images/left.png" alt="" class="img1">
<span class="info">Turn for X</span>
<img src="./Images/right.png" alt="" class="img2">
</div>
<img src="./Images/penguin.png" alt="" id="peng">
<div class="container">
<div class="game">
<div class="line"></div>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
</div>
</div>
<audio src="./Sounds/Background.mp3"></audio>
<audio src="./Sounds/Drawgame.mp3"></audio>
<audio src="./Sounds/Winner.mp3" ></audio>
<audio src="./Sounds/move1.mp3"></audio>
<audio src="./Sounds/move2.mp3"></audio>
<button class="btn">Reset Game</button>
<button class="btn1">New Game</button>
</main>
<footer>
<div class="footer">
<p style="color: white;">
Made with ❤️ by
<a href="https://github.com/Sauravkr1806" target="_blank" style="color: white;">
Saurav
</a>
|
<span id="year" style="color: white;">© </span>
|
<a
href="https://github.com/Sauravkr1806/Tic-Tac-Toe-Game"
target="_blank" style="color: white;"
>
Source
</a>
</p>
</div>
</footer>
<script src="server.js"></script>
</body>
</html>