-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (41 loc) · 1.57 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
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=.0">
<title>Tic Tac Toe Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="start hide">
<h1> Start Game </h1>
<button class="btn_st">Start</button>
</div>
<nav>
<ul>
<li>My TicTacToe.com</li>
</ul>
</nav>
<button class="quit">Quit</button>
<div class="gameContainer">
<div class="container">
<div class="line"></div>
<div class="box bl bt"><span class="box_text"></span></div>
<div class="box bt"><span class="box_text"></span></div>
<div class="box bt br"><span class="box_text"></span></div>
<div class="box bl"><span class="box_text"></span></div>
<div class="box"><span class="box_text"></span></div>
<div class="box br"><span class="box_text"></span></div>
<div class="box bl bb"><span class="box_text"></span></div>
<div class="box bb"><span class="box_text"></span></div>
<div class="box br bb"><span class="box_text"></span></div>
</div>
<div class="Welcome">
<h2 class="h">Welcome to Tic Tac Toe Game</h2>
<div class="outer"><p class="inner">Turn for X </p><p><button class="reset">Reset</button></p></div>
<div class="imageBox"></div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>