-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TicTacToe </title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
</style>
<link rel = stylesheet href = style.css >
</head>
<body>
<div class="game">
<div class="heading">TIC TAC TOE</div>
<div id = result >
<div id = win></div>
<button id = newgame >NEW GAME </button>
</div>
<div class="boxes" id = "grid">
<button class = box ></button>
<button class = box ></button>
<button class = box ></button>
<button class = box ></button>
<button class = box ></button>
<button class = box ></button>
<button class = box ></button>
<button class = box ></button>
<button class = box ></button>
</div>
<button class = reset id = "reset2">RESET</button>
</div>
</body>
<script src = script.js ></script>
</html>