-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbus.html
55 lines (51 loc) · 2.26 KB
/
bus.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Margaret Ulrich's Portfolio</title>
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />
<script src="https://api.mapbox.com/mapbox-gl-js/v1.11.0/mapbox-gl.js"></script>
<link href="https://api.mapbox.com/mapbox-gl-js/v1.11.0/mapbox-gl.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="./bus.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="shortcut icon" href="power.ico" type="image/x-icon">
</head>
<body>
<nav class="navbar navbar-default">
<ul class="nav navbar-nav">
<li class="active"><a href="https://mulrich2021.github.io/">Home</a><span class="sr-only">(current)</span></li>
<li><a href="fullstack.html">
Course
</a></li>
<li><a href="https://github.com/mulrich2021">
Github
</a></li>
<li><a href="https://www.linkedin.com/in/margaret-ulrich/">
LinkedIn
</a></li>
<li>
<div class="dropdown">
<button class="btn navbar-btn dropdown-toggle" type="button" id="dropdown-menu" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Projects
</button>
<div class="dropdown-content">
<a class="dropdown-item" href="portfolio.html"><b>Project Portfolio</b></a>
<a class="dropdown-item" href="pacmen.html">Pacman Project</a><br>
<a class="dropdown-item" href="eyes.html">Eyes Project</a><br>
<a class="dropdown-item" href="bus.html">Bus Tracking Project</a><br>
</div>
</div>
</li>
</ul>
</nav>
</div>
<br>
<div id="map"></div>
<div class="map">
<button style="font-size: 2em" onclick="move()">
Show stops between MIT and Harvard
</button>
</div>
<script src="./bus.js"></script>
</body>
</html>