-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (63 loc) · 2.72 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">
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-12 d-flex justify-content-center">
<h1 class="title">
Tic-Tac-Toe
</h1>
</div>
</div>
<br>
<div class="row">
<div class="col-12 d-flex justify-content-center">
<!-- <p class="subtitle">Click for "X", Double Click for "O"!</p> -->
<p id="turn"></p>
</div>
</div>
<br>
<div class="row">
<div class="col-12 d-flex justify-content-center tablediv">
<table class="table table-borderless d-flex justify-content-center">
<tbody>
<tr>
<td><button class="btn btn1 sq1"></button></td>
<td><button class="btn btn1 sq2"></button></td>
<td><button class="btn btn1 sq3"></button></td>
</tr>
<tr>
<td><button class="btn btn1 sq4"></button></td>
<td><button class="btn btn1 sq5"></button></td>
<td><button class="btn btn1 sq6"></button></td>
</tr>
<tr>
<td><button class="btn btn1 sq7"></button></td>
<td><button class="btn btn1 sq8"></button></td>
<td><button class="btn btn1 sq9"></button></td>
</tr>
</tbody>
</table>
</div>
<br>
<div class="row">
<div class="col-12 d-flex justify-content-center">
<button class="btn btn2">Reset</button>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>