-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (47 loc) · 1.37 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 name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>TIC TAC TOE</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Work+Sans:200" rel="stylesheet">
</head>
<body>
<header>
<h1 class="to-hide">TIC TAC TOE</h1>
<div class="header-div to-hide">
<button class="reset-button">Reset <span class="reset-button-span">game</span></button>
<button class="new-button">New <span class="new-button-span">game</span></button>
</div>
<p class="message"></p>
</header>
<main class="to-hide">
<aside>
<div class="aside-divs">
<p class="player-1-text">player 1</p>
<div class="p1score"></div>
</div>
</aside>
<div class="boxes">
<div class="box 1"></div>
<div class="box 2"></div>
<div class="box 3"></div>
<div class="box 4"></div>
<div class="box 5"></div>
<div class="box 6"></div>
<div class="box 7"></div>
<div class="box 8"></div>
<div class="box 9"></div>
</div>
<aside>
<div class="aside-divs">
<p class="player-2-text">player 2</p>
<div class="p2score"></div>
</div>
</aside>
</main>
<script src="app.js"></script>
</body>
</html>