-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (53 loc) · 1.62 KB
/
index.html
File metadata and controls
56 lines (53 loc) · 1.62 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
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tic tac to</title>
<link rel="stylesheet" href="./assets/css/style.css" type="text/css">
</head>
<body>
<!-- Title -->
<h1 class="title">
Tic Tac Toe
</h1>
<!-- Secoreboard -->
<div class="Secoreboard">
<!-- Player X -->
<h2 class="player playerGreen">Player X<br>
<span class="js-score-x">0</span>
</h2>
<!-- player O -->
<h2 class="player playerRed">
Player O <br>
<span class="js-score-o">0</span>
</h2>
<h2 class="player playerDraw">
Game Draw <br>
<span class="js-score-draw">0</span>
</h2>
</div>
<!-- Game -->
<div class="game">
<!-- Row -->
<div class="row">
<div class="cell js-cell js-cell1"></div>
<div class="cell js-cell js-cell2"></div>
<div class="cell js-cell js-cell3"></div>
</div>
<!-- Row -->
<div class="row">
<div class="cell js-cell js-cell4"></div>
<div class="cell js-cell js-cell5"></div>
<div class="cell js-cell js-cell6"></div>
</div>
<!-- Row -->
<div class="row">
<div class="cell js-cell js-cell7"></div>
<div class="cell js-cell js-cell8"></div>
<div class="cell js-cell js-cell9"></div>
</div>
</div>
<script src="./assets/js/script.js"></script>
</body>
</html>