-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (46 loc) · 2.34 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
<!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 Update</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400&family=Press+Start+2P&family=Raleway:wght@200&family=Righteous&display=swap" rel="stylesheet">
</head>
<body>
<h1 class="retro-text container-fluid">Tic-Tac-Ohh!</h1>
<div class="game-container">
<h7>One more rule: the earliest played move will disappear</h7>
<h5></h5>
<h7>The <h7 style="color: red;">red</h7> colour indicates which moves will disappear</h7>
<div class="game-board">
<div class="cell retro-cell" data-index="0"></div>
<div class="cell retro-cell" data-index="1"></div>
<div class="cell retro-cell" data-index="2"></div>
<div class="cell retro-cell" data-index="3"></div>
<div class="cell retro-cell" data-index="4"></div>
<div class="cell retro-cell" data-index="5"></div>
<div class="cell retro-cell" data-index="6"></div>
<div class="cell retro-cell" data-index="7"></div>
<div class="cell retro-cell" data-index="8"></div>
</div>
<div id="celebration-animation"></div>
<div class="game-info">
<div class="current-player">Current Player: <span id="current-player" class="retro-text">X</span></div>
<button id="reset-button" class="btn-large retro-button">Reset Game</button>
</div>
<h4>This game will never DRAW</h4>
</div>
<footer class="retro-footer">
<div class="container">
<p class="retro-footer-logo"><img src="logo.png" style="height: 100px; width: 100px;"></p>
<p class="retro-footer-copy">© 2024 OmGhumre. All rights reserved.</p>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="script.js"></script>
</body>
</html>