-
Notifications
You must be signed in to change notification settings - Fork 0
/
minecraft.html
31 lines (27 loc) · 903 Bytes
/
minecraft.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="./css/minecraft.css">
<!-- Your page title-->
<title>Minecraft</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="./js/minecraft.js"></script>
<style type="text/css"></style> <!--For themes purposes-->
</head>
<body>
<div id="start-screen">
<div id="tutorial">
<input class="button" name="tutorial-button" id="tutorial-button" type="button" value="Tutorial"/>
</div>
<div id="world-type"></div>
<div id="instructions-modal">
<div id="close-button">X</div>
</div>
</div>
<div id="menu"></div>
<div id="world"></div>
</body>
</html>