forked from paulnguyen-mn/js-tic-tac-toe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (49 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>tic tac toe game | Easy Frontend</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<section class="game-page">
<div class="game">
<div class="chalk-board">
<img src="images/chalk-board-bg.jpg" alt="Chalk board" />
</div>
<div class="overlay-content">
<h1>tic tac toe</h1>
<p class="game-status">
Status: <span id="gameStatus">LOADING</span>
</p>
<div class="game-details">
<p class="current-turn">
<span>TURN: </span>
<span id="currentTurn" class="cross"></span>
</p>
</div>
<div class="game-board">
<ul id="cellList" class="board-cells-list">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<div class="game-replay">
<button id="replayGame">Replay</button>
</div>
</div>
</div>
</section>
<script type="module" src="js/main.js"></script>
<script type="module" src="js/constants.js"></script>
</body>
</html>