-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (56 loc) · 2.04 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
<!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>tick-tack-toe</title>
<script src="./js/app.js" defer></script>
<link rel="stylesheet" href="./css/style.css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
</head>
<body>
<header class="p-3 bg-dark text-white">
<div class="container2">
<div
class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start"
>
<h1>TICK-tack-TOE (⊙ᗜ⊙)</h1>
</div>
</div>
</header>
<div class="container">
<div class="cell1"></div>
<div class="cell2"></div>
<div class="cell3"></div>
<div class="cell4"></div>
<div class="cell5"></div>
<div class="cell6"></div>
<div class="cell7"></div>
<div class="cell8"></div>
<div class="cell9"></div>
</div>
<footer class="p-3 bg-dark text-white">
<div class="container2">
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
<div class="text-end">
<button type="button" class="new-game btn btn-outline-light me-2">
New Game
</button>
<button type="button" class="enable-AI btn btn-outline-light me-2">
New Game against Computer
</button>
<button type="button" class="btn btn-warning">?</button>
<button type="button" class="btn btn-primary invisible">Made by @Benjamin-Re, icons by https://www.lennyfacecopypaste.com/</button>
</div>
</div>
</div>
</footer>
<div class="status"></div>
</body>
</html>