-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (42 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tic Tac Toe</title>
</head>
<body>
<section class="wrapper">
<section class="first-player-section">
<h1 class="player-one">🌮</h1>
<h2 class="player-one-wins">0 Wins</h2>
</section>
<section class="game-board-section">
<h1 class="current-header">Tic Tac Toe</h1>
<div id="tic-tac-toe-board">
<div>
<div class="box" id="box-1"></div>
<div class="box" id="box-2"></div>
<div class="box" id="box-3"></div>
</div>
<div>
<div class="box" id="box-4"></div>
<div class="box" id="box-5"></div>
<div class="box" id="box-6"></div>
</div>
<div>
<div class="box" id="box-7"></div>
<div class="box" id="box-8"></div>
<div class="box" id="box-9"></div>
</div>
</div>
</section>
<section class="second-player-section">
<h1 class="player-two">🌯</h1>
<h2 class="player-two-wins">0 Wins</h2>
</section>
</section>
<script src="main.js"></script>
</body>
</html>