-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (32 loc) 路 1.17 KB
/
Copy pathindex.html
File metadata and controls
39 lines (32 loc) 路 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minecraft</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="start-game-container">
<img class="logo-img" src="./img/Minecraft-Logo.png" alt="logo">
<div class="start-game1">
<h2>Game Instruction:</h2>
<ul class="start-game-list">
<li>You need to pick a tool</li>
<li>Use the tool to take off a tile from the screen</li>
<li>You can place the last tile you have picked back wherever you want</li>
</ul>
<button class="start-game-button">START GAME</button>
</div>
</div>
<div class="tools-and-actions">
<button id="axe"></button>
<button id="pickaxe"></button>
<button id="shovel"></button>
<button id="inventory"><div class="cell" id="last-tile-removed"></div></button>
<button class="btn-style" id="reset">Reset馃攣</button>
</div>
<div class="world-container"></div>
<script src="./main.js"></script>
</body>
</html>