-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (60 loc) · 2.2 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!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>Tic-Tac-Toe</title>
<link rel="icon" href="https://t4.ftcdn.net/jpg/05/34/43/81/360_F_534438192_zxrz5aOLizabpOCDuiNiviXnsmgRoyTb.jpg">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Gaegu">
</head>
<body>
<div class="container">
<header>
<button class="theme">Dark Mode</button>
</header>
<main>
<div class="main">
<h1 id="title">Tic-Tac-Toe</h1>
<div class="button">
<button id="button-new">New Game</button>
<button id="button-reset">Reset Scores</button>
</div>
<div class="game">
<div class="game-board">
<div class="tile"></div>
<div class="tile"></div>
<div class="tile"></div>
<div class="tile"></div>
<div class="tile"></div>
<div class="tile"></div>
<div class="tile"></div>
<div class="tile"></div>
<div class="tile"></div>
</div>
</div>
<div class="player-one">
<p class="status"></p>
<p class="name">Player 1</p>
<p class="score"></p>
</div>
<div class="tie">
<p class="status"></p>
<p class="name">Tie</p>
<p class="score"></p>
</div>
<div class="player-two">
<p class="status"></p>
<p class="name">Player 2</p>
<p class="score"></p>
</div>
</div>
</main>
<footer>
<p>Unit 1 Project by Kim Nguyen</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>