forked from ChromeGaming/Dot-Box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
44 lines (32 loc) · 1.23 KB
/
game.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" />
<!-- Stylesheet -->
<link rel="stylesheet" href="styles/default.style.css">
<link rel="stylesheet" href="styles/game.style.css" />
<!-- JavaScript files -->
<script defer src="./js/edge.js"></script>
<script defer src="./js/box.js"></script>
<script defer src="./js/board.js"></script>
<script defer src="./js/game.js"></script>
<!-- Logo of the game -->
<link rel="icon" href="favicon.ico?" type="image/x-icon">
<link rel="shortcut icon" href="favicon.ico?" type="image/x-icon">
<!-- Title of the game -->
<title>Dots & Boxes Game</title>
</head>
<body>
<!-- Players -->
<div class="players" style="margin-top: 50px;"></div>
<div class="player-turn">
<div class="bg" style="margin-top: 60px;">
<span class="name">PlayerX</span>'s turn
</div>
</div>
<!-- Game Page -->
<div class="board" style="margin-top: 154px;"></div>
<button id="sound-toggle" style="background-color: grey; color: white; border: none; padding: 10px 20px; font-size: 16px; cursor: pointer;">Sound ON</button>
</body>
</html>