-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (44 loc) · 1.73 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
<!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>tictactoe</title>
<link rel="shortcut icon" href="#">
<link rel="stylesheet" href="tictactoe.css">
<script src="https://kit.fontawesome.com/70050aef49.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "gxrtp9hqts");
</script>
</head>
<body>
<h1>Tic Tac Toe</h1>
<div class="grid">
<div class="box">
<div class="eachBox" id="c00"></div>
<div class="eachBox" id="c01"></div>
<div class="eachBox" id="c02"></div>
<div class="eachBox" id="c10"></div>
<div class="eachBox" id="c11"></div>
<div class="eachBox" id="c12"></div>
<div class="eachBox" id="c20"></div>
<div class="eachBox" id="c21"></div>
<div class="eachBox" id="c22"></div>
</div>
</div>
<div class="reset">
<button id='resetGame'>RESET</button>
<button id='sound'>Sound</button>
</div>
<div class="message"></div>
<script src="tictactoe.js"></script>
</body>
</html>