-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.44 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
<!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>
<script src="main.js" defer ></script>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="node_modules/modern-normalize/modern-normalize.css">
<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=Pacifico&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="flex">
<h1 class="pacifico-regular state">Tic Tac Toe</h1>
<button class="reset" onclick="location.reload()">PLay again</button>
</div>
<div class="XOGrid">
<div class="right bottom cell1 cell"></div>
<div class="left bottom right cell2 cell"></div>
<div class="left bottom cell3 cell"></div>
<div class="top right bottom cell4 cell"></div>
<div class="top right bottom left cell5 cell"></div>
<div class="top left bottom cell6 cell"></div>
<div class="top right cell7 cell "></div>
<div class="top right left cell8 cell"></div>
<div class="top left cell9 cell"></div>
</div>
</div>
</body>
</html>