-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (35 loc) · 1.15 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
<!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" />
<link rel="stylesheet" href="/styles.css" />
<script defer src="script.js"></script>
<title>tic tac lolz</title>
</head>
<body>
<h1>tic tac toe (static)</h1>
<div id="message-area"></div>
<div id="board">
<div id="row-1" class="row">
<div id="top-left" class="cell"></div>
<div id="top-middle" class="cell"></div>
<div id="top-right" class="cell"></div>
</div>
<div id="row-2" class="row">
<div id="middle-left" class="cell"></div>
<div id="middle-middle" class="cell"></div>
<div id="middle-right" class="cell"></div>
</div>
<div id="row-3" class="row">
<div id="bottom-left" class="cell"></div>
<div id="bottom-middle" class="cell"></div>
<div id="bottom-right" class="cell"></div>
</div>
</div>
<div id="new-game-button">
<p><button>New Game</button></p>
</div>
</body>
</html>