-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (57 loc) · 3.26 KB
/
index.html
File metadata and controls
72 lines (57 loc) · 3.26 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!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>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>Tic-Tac-Toe</header>
<section class="setup-interface">
<h1 class="setup-title">Pick an icon</h1>
<div class="setup-parent">
<img src="https://images.pexels.com/photos/163811/street-art-shipping-container-freight-highway-163811.jpeg?auto=compress&cs=tinysrgb&w=800" alt="" srcset="" class="material-icons">
<img src="https://images.pexels.com/photos/772650/pexels-photo-772650.jpeg?auto=compress&cs=tinysrgb&w=1600" alt="" class="material-icons">
<img src="https://images.pexels.com/photos/1194420/pexels-photo-1194420.jpeg?auto=compress&cs=tinysrgb&w=800" alt="" class="material-icons">
<img src="https://images.pexels.com/photos/4776/man-sunglasses-art-graffiti.jpg?auto=compress&cs=tinysrgb&w=1600&lazy=load" alt="" class="material-icons">
<img src="https://images.pexels.com/photos/1707640/pexels-photo-1707640.jpeg?auto=compress&cs=tinysrgb&w=800" alt="" class="material-icons">
<img src="https://images.pexels.com/photos/110118/pexels-photo-110118.jpeg?auto=compress&cs=tinysrgb&w=800" alt="" class="material-icons">
<img src="https://images.pexels.com/photos/2180803/pexels-photo-2180803.jpeg?auto=compress&cs=tinysrgb&w=800" alt="" class="material-icons">
<img src="https://images.pexels.com/photos/908713/pexels-photo-908713.jpeg?auto=compress&cs=tinysrgb&w=800" alt="" class="material-icons">
<img src="https://images.pexels.com/photos/1781710/pexels-photo-1781710.jpeg?auto=compress&cs=tinysrgb&w=800" alt="" class="material-icons">
</div>
<button class="readyToPlay">Click To Play!</button>
</section>
<footer class="feet">© BigBBazz 2023</footer>
<section class="game-interface hide">
<div class="grid-parent hide">
<button class="grid-child hide"></button>
<button class="grid-child hide"></button>
<button class="grid-child hide"></button>
<button class="grid-child hide"></button>
<button class="grid-child hide"></button>
<button class="grid-child hide"></button>
<button class="grid-child hide"></button>
<button class="grid-child hide"></button>
<button class="grid-child hide"></button>
</div>
<div class = "players hide">
<button class="player1image hide"></button>
<p class="winTracker hide" id="player1tracker">Player-1 wins: 0 </p>
<button class="player2image hide"></button>
<p class="winTracker hide" id="player2tracker">Player-2 wins: 0 </p>
</div>
<div class="tracking-interface hide">
<p class="message hide"></p>
<p class="rounds hide">Round number: </p>
</div>
<div class ="endButtons hide">
<button class="playAgain hide">Play Again</button>
<button class="reset hide">Reset</button>
</div>
</section>
<script src="tic-tac-toe.js"></script>
</body>
</html>