-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
52 lines (50 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<link id="ic" rel="icon" type="image/png" href="img/logo_dark.png" />
<title>Tic Tac Toe</title>
</head>
<body>
<script src="js/others.js"></script>
<div class="title-sec">
<h1>TIC TAC TOE</h1>
<h2 id="notifier"></h2>
<!-- <h2 id="pts"></h2> -->
</div>
<div class="play-sec">
<div class="tic-tac-toe">
<div class="cell" id="c0"></div>
<div class="cell" id="c1"></div>
<div class="cell" id="c2"></div>
<div class="cell" id="c3"></div>
<div class="cell" id="c4"></div>
<div class="cell" id="c5"></div>
<div class="cell" id="c6"></div>
<div class="cell" id="c7"></div>
<div class="cell" id="c8"></div>
</div>
</div>
<div class="footer-sec">
<div class="footer">
<h4>
<a href="https://github.com/whynotkimhari" target="_blank"
>whynotkimhari <i class="bx bxl-github"></i
></a>
</h4>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>