-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 1.18 KB
/
index.html
File metadata and controls
35 lines (32 loc) · 1.18 KB
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
<!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</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="board">
<h1>Tic Tac Toe</h1>
<h3 class="winner" id='winnerCicrle'></h3>
<div class="row" id='topRow'>
<div class="top left box" id='top-left'></div>
<div class="top middle box" id='top-center'></div>
<div class="top right box" id='top-right'></div>
</div>
<div class="row" id='middleRow'>
<div class="center left box" id='middle-left'></div>
<div class="center middle box" id='middle-center'></div>
<div class="center right box" id='middle-right'></div>
</div>
<div class="row" id='bottomRow'>
<div class="bottom left box" id='bottom-left'></div>
<div class="bottom middle box" id='bottom-center'></div>
<div class="bottom right box" id='bottom-right'></div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>