-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (29 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TicTacToe</title>
<link rel="stylesheet" href="app.css">
</head>
<body>
<header style="font-family: Georgia, 'Times New Roman', Times, serif; font-size: large; background-color: aqua; color: brown; text-align: center;">The player going first has 'O'</header>
<div class="container">
<h1 id="starting text">Lets Play Tic Tac Toe</h1>
<button id="Restart">Restart the Game</button>
<div id="gameBoxes">
<div class="box" id="1"></div>
<div class="box" id="2"></div>
<div class="box" id="3"></div>
<div class="box" id="4"></div>
<div class="box" id="5"></div>
<div class="box" id="6"></div>
<div class="box" id="7"></div>
<div class="box" id="8"></div>
<div class="box" id="9"></div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>