Files
a-plot-of-plants/index.html
T

36 lines
1.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>A Plot of Plants</title>
<link rel="stylesheet" href="./vendor/leaflet/leaflet.css" />
<link rel="stylesheet" href="./src/lib/checkbox-tree/checkbox-tree.css" />
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div class="app-shell">
<aside class="panel">
<p class="eyebrow">A Plot of Plants</p>
<h1>204 6th Avenue NW</h1>
<p class="intro">
A medium sized city lot in Mandan, ND. A white picket fence surrounds
a variety of trees, shrubs, and flowers. There are many varieties of
daylilies.
</p>
<section class="visibility-panel" aria-labelledby="visibility-title">
<h2 id="visibility-title">Map features</h2>
<div id="visibility-tree"></div>
</section>
</aside>
<main>
<div id="map" aria-label="Map of yard"></div>
</main>
</div>
<script src="./src/error-overlay.js"></script>
<script src="./vendor/leaflet/leaflet.js"></script>
<script type="module" src="./src/main.js"></script>
</body>
</html>