-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (49 loc) · 1.48 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
48
49
50
51
52
<!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>MyTicTacToe.com</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="responsive.css">
</head>
<body>
<nav>
<ul>
<li>MyTicTacToe.com</li>
</ul>
</nav>
<div class="gameContainer">
<div class="container">
<div class="box bc-l bc-t"></div>
<div class="box bc-t"></div>
<div class="box bc-t bc-r"></div>
<div class="box bc-l"></div>
<div class="box"></div>
<div class="box bc-r"></div>
<div class="box bc-l bc-b"></div>
<div class="box bc-b"></div>
<div class="box bc-r bc-b"></div>
</div>
<!-- Information Tag -->
<div class="info">
<h2>Welcome to MyTicTacToe website</h2>
<div class = "mid">
<p>Turn of : X</p>
<button id = "btn" onclick="func2()">reset</button>
</div>
<div class="img">
<img src="excited.gif">
</div>
</div>
</div>
<footer>
<div class="content">
<h2>Copyright © All right reserved</h2>
<p>For More infomation Go to our website</p>
</div>
</footer>
</body>
<script src="script.js"></script>
</html>