-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 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
43
44
45
46
47
<!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 href="./css/main.css" rel="stylesheet">
<body>
<div class="backdrop" id="backdrop"></div>
<div class="result" id="result">
<h2 id="result_info"></h2>
<div class="result-close"><button class="result-button" id="closeBtn">close</button></div>
</div>
<div class="game" id="game">
<h1 class="game_title">Tic Tak Toe</h1>
<div class="game_layout">
<div class="rows">
<button class="btn" id="r1"></button>
<button class="btn" id="r2"></button>
<button class="btn" id="r3"></button>
</div>
<div class="rows">
<button class="btn" id="r4"></button>
<button class="btn" id="r5"></button>
<button class="btn" id="r6"></button>
</div>
<div class="rows">
<button class="btn" id="r7"></button>
<button class="btn" id="r8"></button>
<button class="btn" id="r9"></button>
</div>
</div>
<div class="players">
<div id="player1" class="player1">
<h2>Player 1 </h2>
</div>
<div id="player2" class="player2">
<h2>Player 2 </h2>
</div>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>