File tree 1 file changed +39
-0
lines changed
1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+ < head >
4
+ < meta charset ="UTF-8 ">
5
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6
+ < title > Tic-Tac-Toe Game</ title >
7
+ < link rel ="stylesheet " href ="style.css ">
8
+
9
+
10
+ <!-- Bootstrap CSS -->
11
+ < link rel ="
stylesheet "
href ="
https://cdn.jsdelivr.net/npm/[email protected] /dist/css/bootstrap.min.css "
>
12
+
13
+ <!-- Animate.css for Animations -->
14
+ < link rel ="stylesheet " href ="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css ">
15
+
16
+
17
+ </ head >
18
+ < body >
19
+ < main >
20
+ < h1 class ="mt-3 "> Tic Tac Toe</ h1 >
21
+ < div class ="container ">
22
+ < div class ="game ">
23
+ < button class ="box "> </ button >
24
+ < button class ="box "> </ button >
25
+ < button class ="box "> </ button >
26
+ < button class ="box "> </ button >
27
+ < button class ="box "> </ button >
28
+ < button class ="box "> </ button >
29
+ < button class ="box "> </ button >
30
+ < button class ="box "> </ button >
31
+ < button class ="box "> </ button >
32
+ </ div >
33
+ < h2 id ="winner-text " class ="mt-3 "> </ h2 >
34
+ < button id ="reset-btn " class ="mt-3 "> Reset Game</ button >
35
+ </ div >
36
+ </ main >
37
+ < script src ="script.js "> </ script >
38
+ </ body >
39
+ </ html >
You can’t perform that action at this time.
0 commit comments