-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab3-tic-tac-toe.html
39 lines (35 loc) · 2.26 KB
/
lab3-tic-tac-toe.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="stylesheet" media="screen" href="lab3-tic-tac-toeCSS.css">
<script src="lab3-tic-tac-toeJS.js" defer></script>
<title>Tic-Tac-Toe</title>
</head>
<body>
<!--- White pic https://www.panelplus.co.th/uploads/collection/5be55-white-mk630n.jpg -->
<h1 class="container"> Tic-Tac-Toe <a class="button3 center" id="reset">reset</a> </h1>
<div class="container">
<table class="table" id="tic">
<tr id="row1" class="rw">
<td id="col11"><img src="https://www.panelplus.co.th/uploads/collection/5be55-white-mk630n.jpg" alt="" class="img-thumbnail"></td>
<td id="col12"><img src="https://www.panelplus.co.th/uploads/collection/5be55-white-mk630n.jpg" alt="" class="img-thumbnail"></td>
<td id="col13"><img src="https://www.panelplus.co.th/uploads/collection/5be55-white-mk630n.jpg" alt="" class="img-thumbnail"></td>
</tr>
<tr id="row2" class="rw">
<td id="col21"><img src="https://www.panelplus.co.th/uploads/collection/5be55-white-mk630n.jpg" alt="" class="img-thumbnail"></td>
<td id="col22"><img src="https://www.panelplus.co.th/uploads/collection/5be55-white-mk630n.jpg" alt="" class="img-thumbnail"></td>
<td id="col23"><img src="https://www.panelplus.co.th/uploads/collection/5be55-white-mk630n.jpg" alt="" class="img-thumbnail"></td>
</tr>
<tr id="row3" class="rw">
<td id="col31"><img src="https://www.panelplus.co.th/uploads/collection/5be55-white-mk630n.jpg" alt="" class="img-thumbnail"></td>
<td id="col32"><img src="https://www.panelplus.co.th/uploads/collection/5be55-white-mk630n.jpg" alt="" class="img-thumbnail"></td>
<td id="col33"><img src="https://www.panelplus.co.th/uploads/collection/5be55-white-mk630n.jpg" alt="" class="img-thumbnail"></td>
</tr>
</table>
</div>
<h2 class="container" id="results"></h2>
</body>
</html>