Air-Quality-Web/client_src/index.html

23 lines
504 B
HTML
Raw Normal View History

2019-01-13 13:22:13 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
2019-02-01 18:45:41 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
2019-01-13 13:22:13 +00:00
<title>Air Quality Map | ConnectedHumber</title>
</head>
<body>
<h1>Air Quality Map</h1>
<!-- Leaflet needs an id to attach to -->
<main id="map">
</main>
2019-01-13 13:22:13 +00:00
<canvas id="canvas-guage" width="50" height="300"></canvas>
2019-01-13 13:22:13 +00:00
<!---------------->
<link rel="stylesheet" href="app.css" />
2019-01-13 13:22:13 +00:00
<script src="app.js" charset="utf-8"></script>
</body>
</html>