-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 836 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="#" />
<meta charset="utf-8" />
<title>2022 IPBI Routes</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="https://api.tiles.mapbox.com/mapbox-gl-js/v2.6.1/mapbox-gl.js"></script>
<link
href="https://api.tiles.mapbox.com/mapbox-gl-js/v2.6.1/mapbox-gl.css"
rel="stylesheet"
/>
<link href="./style.css" rel="stylesheet" />
</head>
<body>
<div id="map">
<div id="chartbox">
<div id="header">Welcome to Portland!</div>
<div id="routedesc">Hope you enjoy our trip!</div>
<div class="chart-container">
<nav id="menu"></nav>
</div>
</div>
</div>
<script src="./js/main.js" type="module"></script>
</body>
</html>