-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (36 loc) · 1.3 KB
/
index.html
File metadata and controls
43 lines (36 loc) · 1.3 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
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Tic-Tac-Toe App">
<meta name="keywords" content="Tic-Tac-Toe, App, Game">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tic-Tac-Toe App</title>
<!-- external CSS link -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Tic Tac Toe</h1>
<section id="board">
<section class="row">
<div id="one" class="grid"></div>
<div id="two" class="grid"></div>
<div id="three" class="grid"></div>
</section>
<section class="row">
<div id="four" class="grid"></div>
<div id="five" class="grid"></div>
<div id="six" class="grid"></div>
</section>
<section class="row">
<div id="seven" class="grid"></div>
<div id="eight" class="grid"></div>
<div id="nine" class="grid"></div>
</section>
</section>
<section id="button">
<button type="button" name="button">New Game</button>
</section>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>