-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (40 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/style.css">
<title>Tic-Tac-Toe</title>
</head>
<body>
<h1 class="text-center">Tic <span>Tac</span> Toe</h1>
<div class="start-page" id="startPage">
<h1 class="title">Welcome to Tic Tac Toe Game</h1>
<p class="input-text">Enter your names or play as Guests</p>
<div class="inputs">
<input type="text" placeholder="PLAYER 1" id="player1">
<input type="text" placeholder="PLAYER 2" id="player2">
</div>
<div class="inputs-btn">
<button id="startBtn">START</button>
</div>
</div>
<div class="game-board">
<div class="board-cell board-cell1"></div>
<div class="board-cell board-cell2"></div>
<div class="board-cell board-cell3"></div>
<div class="board-cell board-cell4"></div>
<div class="board-cell board-cell5"></div>
<div class="board-cell board-cell6"></div>
<div class="board-cell board-cell7"></div>
<div class="board-cell board-cell8"></div>
<div class="board-cell board-cell9"></div>
</div>
<div class="winning-message" id="winningMessage">
<div data-winning-message-text></div>
<button id="restartButton">Restart</button>
<button id="exitBtn">EXIT</button>
</div>
<script src="JS/app.js" type="module"></script>
</body>
</html>