forked from avionschool/batch6-activities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="styles.css" />
<title>Tic Tac Toe</title>
</head>
<body>
<section>
<h1 class="game--title">Tic Tac Toe</h1>
<class class="game--container">
<div data-cell-index="0-0" class="cell"></div>
<div data-cell-index="0-1" class="cell"></div>
<div data-cell-index="0-2" class="cell"></div>
<div data-cell-index="1-0" class="cell"></div>
<div data-cell-index="1-1" class="cell"></div>
<div data-cell-index="1-2" class="cell"></div>
<div data-cell-index="2-0" class="cell"></div>
<div data-cell-index="2-1" class="cell"></div>
<div data-cell-index="2-2" class="cell"></div>
</class>
<h2 class="game--status"></h2>
<button class="game--previous" id="previous" onclick="previousButton()">Previous</button>
<button class="game--restart">Restart Game</button>
<button class="game--next" id="next" onclick="nextButton()">Next</button>
</section>
</body>
<script src="main.js"></script>
</html>