-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (63 loc) · 2.44 KB
/
index.html
File metadata and controls
77 lines (63 loc) · 2.44 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<title>GO Game</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="style_cube.css">
<link rel="stylesheet" type="text/css" href="style_cube.css">
</head>
<body>
<div id = "cube-container">
<body>
<div class="Cube">
<div class="Top">
</div>
<div class="walls">
<span style="--i:1;"></span>
<span style="--i:2;"></span>
<span style="--i:3;"></span>
<span style="--i:4;"></span>
</div>
</div>
</body>
</div>
<div id="transition-overlay">
<div class="transition-content">
<h2>NullExp Game presents...</h2>
</div>
</div>
<div id = "game-container">
<body id="game-content">
<h1 class="purples">Go game</h1>
<div id="controls">
<label for="board-size">Choose the board size:</label>
<select id="board-size" class="custom-select">
<option value="64">8х8</option>
</select>
</div>
<div id="game-board"></div>
<button id="reset-button"> Сбросить игру</button>
<div id="score-container">
<div id="player1-score">You: 0</div>
<div id="PC-score">PC: 0</div>
</div>
</body>
</div>
<div id="game-board"></div>
<button id="reset-button"> Сбросить игру</button>
<div id="score-container">
<div id="player1-score">You: 0</div>
<div id="PC-score">PC: 0</div>
</div>
</body>
</div>
<script src="script.js"></script>
</body>
<footer>
<div id="made-by">Made by NullExp</div>
</footer>
</html>