-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.25 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
<!DOCTYPE html>
<!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>Tic Tac Toe</title>
<link rel="stylesheet" href="app.css">
</head>
<body>
<div class="container">
<h1 id="playText">Let's Play Tic Tac Toe!</h1>
<button id="restart">Restart </button>
<div id="gameboard">
<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 class="footer">
<div class="ftr-txt">
© <span id="year"></span> - Anjuman Hasan - All Rights Reserved.
</div>
<div class="git">
<a href="https://github.com/AnjumanHasan/TicTacToe" target="_blank" rel="noopener noreferrer">Github</a>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>