-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Permanent+Marker|Roboto" rel="stylesheet">
<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 href="css/style.css" rel="stylesheet" type="text/css">
<script defer src="js/main.js"></script>
<title>Tic Tac Toe</title>
</head>
<body>
<h1>Tic-Tac-Toe</h1>
<h2>It's X's turn!</h2>
<div class="board-container flex-container flex-column">
<div class="board-div flex-container flex-wrap" id="board">
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
<div class="square"></div>
</div>
<button id="reset-button">reset</button>
</div>
</body>
</html>