-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mylla | Norse Inspired Tic-Tac-Toe</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<h1> Mylla </h1>
<p>Norse inspired Tic-Tac-Toe</p>
<div id="player-info">
<label for="player1-name">Player 1 Name: </label>
<input type="text" id="player1-name" placeholder="Enter name">
<br>
<label for="player2-name">Player 2 Name: </label>
<input type="text" id="player2-name" placeholder="Enter name">
</div>
<p>Enter player names above, and select "Start Game" to play</p>
<button id="start-game" class="start-btn">Start Game</button>
<div class="board" id="gameBoard">
<div class="cell" data-index="0"></div>
<div class="cell" data-index="1"></div>
<div class="cell" data-index="2"></div>
<div class="cell" data-index="3"></div>
<div class="cell" data-index="4"></div>
<div class="cell" data-index="5"></div>
<div class="cell" data-index="6"></div>
<div class="cell" data-index="7"></div>
<div class="cell" data-index="8"></div>
</div>
<div id="game-results"></div>
<div id="message"></div>
<script src="main.js"></script>
</body>
<footer>
<div class="footer-container">
<p>©2024 Miðgarð Wisdom Project <br> Translation confirmation by <a href="https://www.tiktok.com/@thereal.ivar" target="_blank">@thereal.ivar</a></p>
<div class="social-icons">
<a href="https://www.tiktok.com/@thereal.ivar" target="_blank" aria-label="TikTok"><i class="fab fa-tiktok"></i></a>
<a href="https://github.com/zalbright90" target="_blank" aria-label="GitHub"><i class="fab fa-github"></i></a>
</div>
</div>
</footer>
</html>