-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.35 KB
/
Copy pathindex.html
File metadata and controls
43 lines (39 loc) · 1.35 KB
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
<!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>Game</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<nav>
<h1>Tic Tac Toe game</h1>
</nav>
<div class="container">
<div class="game-container">
<div class="box bt bl"><span class="box-item"></span></div>
<div class="box bt"><span class="box-item"></span></div>
<div class="box bt br"><span class="box-item"></span></div>
<div class="box bl"><span class="box-item"></span></div>
<div class="box"><span class="box-item"></span></div>
<div class="box br"><span class="box-item"></span></div>
<div class="box bl bb"><span class="box-item"></span></div>
<div class="box bb"><span class="box-item"></span></div>
<div class="box br bb"><span class="box-item"></span></div>
</div>
<div class="game-info">
<h1>Welcome to the game</h1>
<div>
<span class="info"> turn X</span>
<button type="reset" id="reset">Reset</button>
</div>
<div class="img-box">
<img src="./excited.gif" />
</div>
</div>
</div>
</body>
<script src="./index.js"></script>
</html>