-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (101 loc) · 4.19 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-L2EKW7E7ZM"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-L2EKW7E7ZM');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Discover a unique twist on the classic Tic Tac Toe game! Place three moves at a time on the board and strategize to outsmart our clever bot. Enjoy a fun and engaging experience that's perfect for players of all ages. Visit now to play and challenge your strategic thinking!">
<title>Tic Tac Toe (Redefined)</title>
<link rel="icon" type="image/x-icon" href="./assets/images/ico.jpg">
<link rel="stylesheet" href="./styles.css">
<script defer src="./app.js"></script>
<meta name="google-site-verification" content="suVChK7-yJeU7J2Ny_3UbM4kVmEgeY07OELWBR3lMd4" />
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="Play Tic Tac Toe (Redefined) - Challenge Your Strategy Skills!">
<meta property="og:description" content="Enjoy a unique twist on Tic Tac Toe! Strategize with three moves on the board and challenge our clever bot. Fun for all ages!">
<meta property="og:image" content="https://kartikth40.github.io/tic-tac-toe-redefined/imgs/logo.png">
<meta property="og:url" content="https://kartikth40.github.io/tic-tac-toe-redefined">
<meta property="og:type" content="website">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Play Tic Tac Toe - Challenge Your Strategy Skills!">
<meta name="twitter:description" content="Enjoy a unique twist on Tic Tac Toe! Strategize with three moves on the board and challenge our clever bot. Fun for all ages!">
<meta name="twitter:image" content="https://kartikth40.github.io/tic-tac-toe-redefined/imgs/logo.png">
<meta name="twitter:url" content="https://kartikth40.github.io/tic-tac-toe-redefined">
</head>
<body>
<div class="gameplay-container">
<h2 class="title">Tic Tac Toe (Redefined)</h2>
<div class="top-shelf">
<div class="game-over-overlay">
<div class="text">
<p>Game Over!</p>
<p class="who-won">You Won!</p>
</div>
<button class="restart-btn retry">Retry 🔁</button>
</div>
<div class="btns">
<button class="restart-btn restart">Restart 🔁</button>
<button class="is-bot">Vs Bot 🤖</button>
<button class="bot-level-btn" data-tip="If I can't win then I'll block you">bol level <span class="bot-level">4</span></button>
</div>
</div>
<div class="grid-container">
<div class="box-row">
<div class="box box-11"></div>
<div class="box box-12"></div>
<div class="box box-13"></div>
</div>
<div class="box-row">
<div class="box box-21"></div>
<div class="box box-22"></div>
<div class="box box-23"></div>
</div>
<div class="box-row">
<div class="box box-31"></div>
<div class="box box-32"></div>
<div class="box box-33"></div>
</div>
</div>
<div class="instructions">
<div class="move">
<div class="move-wasd">
<div class="move-w">
<span>W</span>
</div>
<div class="move-asd">
<span>A</span><span>S</span><span>D</span>
</div>
</div>
<p>or</p>
<div class="move-arrows">
<div class="move-up">
<span>▲</span>
</div>
<div class="move-all">
<span>◀</span><span>▼</span><span>▶</span>
</div>
</div>
</div>
<div class="actions">
<div class="space">
<span>—</span>
</div>
<p>or</p>
<div class="enter">
<span>enter</span>
</div>
</div>
</div>
<div class="bot-expressions"></div>
<footer> <a target="_blank" href="https://kartikthakur-me.web.app">© <span class="footer-year">2024</span> Kartik Thakur</a></footer>
</div>
</body>
</html>