-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (42 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="author" content="Bandi, Om Preetham">
<meta name="description" content="Tic Tac Toe game designed with HTML, CSS and JS.">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tic Tac Toe</title>
<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=Permanent+Marker&family=Roboto:wght@400;500;700&family=Silkscreen:wght@400;700&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="./assets/icon.png">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/popover.css">
</head>
<body>
<main>
<section class="game-container">
<section class="top-container">
<div class="game-icon">
<span class="x-icon">X</span>
<span class="o-icon">O</span>
</div>
<div class="turns">
<span class="turns-icon js-turns-icon">X</span>
<span class="turn">TURN</span>
</div>
<div class="reset">
<button class="reset-button js-reset-button">↻</button>
</div>
</section>
<section class="tiles-container js-tile-container">
</section>
<section class="score-container js-score-container">
</section>
</section>
<section class="popover-container js-popover-container">
</section>
</main>
<script src="scripts/main.js"></script>
</body>
</html>