-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (59 loc) · 4.34 KB
/
Copy pathindex.html
File metadata and controls
62 lines (59 loc) · 4.34 KB
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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="style.css">
</head>
<body class="p-3 mb-2 bg-transparent text-body">
<div class="container" id="board">
<div class="row text-center ">
<div class="col">
<h1 class="text-center">Tic-Tac-Toe</h1>
</div>
</div>
<table class="table-6 align-middle" vertical-align: middle>
<tbody>
<tr>
<td class="cell" id="0" data-cell><img id="xImage" height="90px" style="display: none;" src="C:\Users\HP\OneDrive\Pictures\web\x.gif" alt="animated gif of X">
<img id="oImage" height="90px" style="display: none;" src="C:\Users\HP\OneDrive\Pictures\web\o.gif " alt="animated gif of O"></td>
<td class="cell" id="1" data-cell><img id="xImage" height="90px" style="display:none;" src="C:\Users\HP\OneDrive\Pictures\web\x.gif" alt="animated gif of X">
<img id="oImage" height="90px" style="display: none;" src="C:\Users\HP\OneDrive\Pictures\web\o.gif " alt="animated gif of O"></td>
<td class="cell" id="2" data-cell><img id="xImage" height="90px" style="display:none;" src="C:\Users\HP\OneDrive\Pictures\web\x.gif" alt="animated gif of X">
<img id="oImage" height="90px" style="display: none;" src="C:\Users\HP\OneDrive\Pictures\web\o.gif " alt="animated gif of O"></td>
</tr>
<tr>
<td class="cell" id="3" data-cell><img id="xImage" height="90px" style="display:none;" src="C:\Users\HP\OneDrive\Pictures\web\x.gif" alt="animated gif of X">
<img id="oImage" height="90px" style="display: none;" src="C:\Users\HP\OneDrive\Pictures\web\o.gif " alt="animated gif of O"></td>
<td class="cell" id="4" data-cell><img id="xImage" height="90px" style="display:none;" src="C:\Users\HP\OneDrive\Pictures\web\x.gif" alt="animated gif of X">
<img id="oImage" height="90px" style="display: none;" src="C:\Users\HP\OneDrive\Pictures\web\o.gif " alt="animated gif of O"></td>
<td class="cell" id="5" data-cell><img id="xImage" height="90px" style="display:none;" src="C:\Users\HP\OneDrive\Pictures\web\x.gif" alt="animated gif of X">
<img id="oImage" height="90px" style="display: none;" src="C:\Users\HP\OneDrive\Pictures\web\o.gif " alt="animated gif of O"></td>
</tr>
<tr>
<td class="cell border-bottom-0" id="6" data-cell><img id="xImage" height="90px" style="display:none;" src="C:\Users\HP\OneDrive\Pictures\web\x.gif" alt="animated gif of X">
<img id="oImage" height="90px" style="display: none;" src="C:\Users\HP\OneDrive\Pictures\web\o.gif " alt="animated gif of O"></td>
<td class="cell border-bottom-0" id="7" data-cell><img id="xImage" height="90px" style="display:none;" src="C:\Users\HP\OneDrive\Pictures\web\x.gif" alt="animated gif of X">
<img id="oImage" height="90px" style="display: none;" src="C:\Users\HP\OneDrive\Pictures\web\o.gif " alt="animated gif of O"></td>
<td class="cell border-bottom-0" id="8" data-cell><img id="xImage" height="90px" style="display:none;" src="C:\Users\HP\OneDrive\Pictures\web\x.gif" alt="animated gif of X">
<img id="oImage" height="90px" style="display: none;" src="C:\Users\HP\OneDrive\Pictures\web\o.gif " alt="animated gif of O"></td>
</tr>
</tbody>
</table>
</div>
<div class="row">
<div class="col"><br><br>
<button class="m-20" id="restartButton">Restart</button><br><br>
<div class="winningMessage show" id="winningMessage">
<div id="winningMessageText"></div>
</div>
</div>
</div>
</div>
<script src="node_modules/bootstrap/dist/js/bootstrap.bundle.js"></script>
<script src="test.js"></script>
</body>
</html>