-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (71 loc) · 2.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tic Tac Toe</title>
<meta name="description" content="Simple Tic Tac Tow game using HTML,CSS,JS">
<meta name="author" content="Amit Verma">
<meta name="robots" content="index,follow">
<meta name="keywords" content="tic-tac-toe tictactoe tic tac toe">
<!-- meta sharing -->
<meta property="og:title" content="Tic Tac Toe">
<meta property="og:description" content="Simple Tic Tac Tow game using HTML,CSS,JS">
<meta property="og:image" content="https://uploads.codehs.com/859400cd211700dcde03a3f3cee74575">
<meta property="og:url" content="https://tic-tac-toe-s38s.onrender.com/">
<!-- twitter sharing -->
<meta name="twitter:card" content="Tic Tac Toe">
<meta name="twitter:title" content="Tic Tac Toe">
<meta name="twitter:description" content="Simple Tic Tac Tow game using HTML,CSS,JS">
<meta name="twitter:image" content="https://uploads.codehs.com/859400cd211700dcde03a3f3cee74575">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="android.css">
<link rel="icon" href="assets/tic-tac-toe.png" type="image/png">
<meta name="theme-color" content="rgb(252, 149, 147)">
</head>
<body>
<div id="loader">
<img src="assets/loading.gif" alt="">
</div>
<div class="main">
<div id="speaker"></div>
<div id="head">Tic Tac Toe</div>
<div class="wrapper">
<div class="row">
<input type="text" name="" id="b1" class="box" readonly onclick="b1_box()">
<input type="text" name="" id="b2" class="box" readonly onclick="b2_box()">
<input type="text" name="" id="b3" class="box" readonly onclick="b3_box()">
</div>
<div class="row">
<input type="text" name="" id="b4" class="box" readonly onclick="b4_box()">
<input type="text" name="" id="b5" class="box" readonly onclick="b5_box()">
<input type="text" name="" id="b6" class="box" readonly onclick="b6_box()">
</div>
<div class="row">
<input type="text" name="" id="b7" class="box" readonly onclick="b7_box()">
<input type="text" name="" id="b8" class="box" readonly onclick="b8_box()">
<input type="text" name="" id="b9" class="box" readonly onclick="b9_box()">
</div>
</div>
<div class="chanceWrapper">
<div id="chance">Turn Of</div>
<div id="chanceImg"></div>
</div>
<div id="reset">New Game</div>
<div id="winWrapper">
<div id="win"></div>
<div id="winImg"><span id="sp">wins</span></div>
</div>
<div id="developer">
©❤️ 2024 Amit Verma
</div>
<a href="https://www.linkedin.com/in/amitk007/">
<div id="linkedin"></div>
</a>
<a href="https://github.com/amit0-git/Tic-Tac-Toe">
<div id="github"></div>
</a>
</div>
<script src="main.js"></script>
</body>
</html>