-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMinecraft.html
More file actions
27 lines (23 loc) · 827 Bytes
/
Minecraft.html
File metadata and controls
27 lines (23 loc) · 827 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" type="text/css" href="./css/Minecraft.css">
</head>
<body>
<div class="backgroundImage">
<input id="startButton" type="button" value="Start Game"/>
</div>
<div id="grid"></div>
<div id="toolBar">
<img class="tool" id="axe" src ="./images/axe.png"><p>Axe</p></img>
<img class="tool" id="pickAxe" src ="./images/pickaxe.png"><p>Pickaxe</p></img>
<img class="tool" id="shovel" src ="./images/shovel.png"><p>Shovel</p></img>
<img class="tool" id="block" src =""><p>Current Block</p></img>
</div>
<script src="./js/jquery-3.0.0.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="js/Minecraft.js"></script>
</body>
</html>