-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 996 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<title>Minecraft Map Viewer</title>
<style>
body {
margin: 0;
background-color: #000000;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#info-text {
position: absolute;
bottom: 10px;
left: 10px;
color: #ffffff;
text-shadow: 0 0 4px #000000;
}
#info-text a {
color: #aaaaaa;
}
</style>
</head>
<body>
<script>
window.addEventListener("load", function() {
MinecraftWebViewer.init();
});
</script>
<div id="info-text">By <a href="https://www.david-schulte.de/" target="_blank">David Schulte</a> - Twitter: <a href="https://twitter.com/Arcus92" target="_blank">@Arcus92</a></div>
</body>
</html>