-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (49 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tic Tak Toe</title>
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
</head>
<body>
<!-- <span class="material-symbols-rounded">home</span> -->
<div class="players">
<div class="player1 player">
<span class="material-symbols-rounded">person</span>
<span class="player-nm">Player 1</span>
</div>
<div class="player2 player">
<span class="material-symbols-rounded">person</span>
<span class="player-nm">Player 2</span>
</div>
</div>
<div class="score-board">
<span class="material-symbols-rounded flag">flag</span>
<span class="match-result">Match Start</span>
<!-- player 1 Win this match -->
<!-- Tie -->
<span class="material-symbols-rounded flag">flag</span>
</div>
<div class="play-area">
<div class="play-boxes-container">
<div class="play-box"></div>
<div class="play-box"></div>
<div class="play-box"></div>
<div class="play-box"></div>
<div class="play-box"></div>
<div class="play-box"></div>
<div class="play-box"></div>
<div class="play-box"></div>
<div class="play-box"></div>
</div>
</div>
<div class="start-match">
<button class="start-btn">
<span class="material-symbols-rounded play-icon">play_arrow</span>
Start</button>
</div>
</body>
<script src="scripts/gameLogic.js"></script>
</html>