-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.5 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
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tic Tac Toe</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1 id="header">Tic Tac Toe</h1>
<div class="container">
<div class="container box-container">
<div class="box">
<button class="btn" type="button" id="1"></button>
<button class="btn" type="button" id="2"></button>
<button class="btn" type="button" id="3"></button>
</div>
<div class="box">
<button class="btn" type="button" id="4"></button>
<button class="btn" type="button" id="5"></button>
<button class="btn" type="button" id="6"></button>
</div>
<div class="box">
<button class="btn" type="button" id="7"></button>
<button class="btn" type="button" id="8"></button>
<button class="btn" type="button" id="9"></button>
</div>
</div>
<div class="playBtn-box">
<div class="playBtn-container">
<a href="single.html">
<button type="button">Single Player</button>
</a>
<a href="multi.html">
<button type="button">Multi Player</button>
</a>
</div>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>