treeadvisor/server/static/index.html

20 lines
555 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dresden Tree Advisor</title>
<link rel="stylesheet" href="leaflet.css" />
<script src="leaflet.js"></script>
<style>
#map { margin: 0; padding: 0; width: 100vw; height: 100vh; }
body { margin: 0; padding: 0; font-family: sans-serif; }
</style>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
</head>
<body>
<div id="map"></div>
<script src="app.js"></script>
</body>
</html>