mirror of
https://github.com/ConnectedHumber/Air-Quality-Web
synced 2024-10-31 03:23:01 +00:00
19 lines
366 B
HTML
19 lines
366 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8' />
|
|
<title>Air Quality Map | ConnectedHumber</title>
|
|
</head>
|
|
<body>
|
|
<h1>Air Quality Map</h1>
|
|
|
|
<!-- Leaflet needs an id to attach to -->
|
|
<main id="map">
|
|
|
|
</main>
|
|
|
|
<!---------------->
|
|
<link rel="stylesheet" href="app.css" />
|
|
<script src="app.js" charset="utf-8"></script>
|
|
</body>
|
|
</html>
|