generated from sean-garwood/webpage_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (62 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TOP | Tic-Tac-Toe | JS</title>
<link rel="stylesheet" href="src/styles/style.css">
</head>
<body>
<header>
<h1>Tic-Tac-Toe</h1>
</header>
<main>
<dialog class='form-dialog' open>
<form id="form" method="dialog">
<legend>Enter your names.</legend>
<fieldset>
<label for="player1">Player 1</label>
<input type="text" id="player1" name="player1" default="Player 1">
<label for="player2">Player 2</label>
<input type="text" id="player2" name="player2" default="Player 2">
<button type="submit">Start game</button>
</fieldset>
</form>
</dialog>
<h2>Game board</h2>
<div class="game-board-container">
<div id="game-board">
<div class="row">
<button class="cell" data-row="0" data-col="0"> </button>
<button class="cell" data-row="0" data-col="1"> </button>
<button class="cell" data-row="0" data-col="2"> </button>
</div>
<div class="row">
<button class="cell" data-row="1" data-col="0"> </button>
<button class="cell" data-row="1" data-col="1"> </button>
<button class="cell" data-row="1" data-col="2"> </button>
</div>
<div class="row">
<button class="cell" data-row="2" data-col="0"> </button>
<button class="cell" data-row="2" data-col="1"> </button>
<button class="cell" data-row="2" data-col="2"> </button>
</div>
</div>
</div>
<ul id="errors-list">
</ul>
<div class="game-info-container">
<p id="player-turn"></p>
<p id="winner-name"><span id="winner"></span></p>
</div>
</div>
<div class="game-actions-container">
<a href="" id="reset">Reset game</a>
</div>
</main>
<footer>
<p>© 2024 Sean Garwood</p>
</footer>
<script type="module" src="src/scripts/main.js"></script>
</body>
</html>