-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
39 lines (36 loc) · 1.17 KB
/
main.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<div id="MainContainer"></div>
<div id="tools-bar">
<div class="box" type ="wood">
<img src="./images/axe.png" alt="" type="wood"/>
</div>
<div class="box" type="stone">
<img src="./images/pickaxe.png" alt="" type="stone" />
</div>
<div class="box" type="ground">
<img src="./images/shovel.png" alt="" type="ground"/>
</div>
<div id="Matirels">
<div class="ground">0</div>
<div class="grass">0</div>
<div class="stone">0</div>
<div class="wood">0</div>
<div class="leaf">0</div>
<div class="tree">0</div>
</div>
<a href="./index.html" class="btn">Description</a>
<button class="btn" id="restart">Restart</button>
<!-- <div id="Navbar-buttons"> -->
</div>
<script src="./index.js"></script>
</body>
</html>