a3web/static/index.html

22 lines
357 B
HTML
Raw Normal View History

2020-02-13 13:59:29 +00:00
<!DOCTYPE html>
<html>
2020-02-15 10:20:14 +00:00
<head>
<meta charset="utf-8">
2020-02-16 00:14:59 +00:00
<title>leoservermod</title>
2020-02-15 10:20:14 +00:00
<style>
2020-02-16 00:38:15 +00:00
#map {
2020-02-16 00:14:59 +00:00
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
2020-02-16 14:20:27 +00:00
background: black;
2020-02-15 10:20:14 +00:00
}
</style>
</head>
<body>
2020-02-16 00:38:15 +00:00
<div id="map"></div>
2020-02-15 10:20:14 +00:00
<script src="./index.js"></script>
</body>
2020-02-13 13:59:29 +00:00
</html>