-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.html
37 lines (32 loc) · 1.27 KB
/
footer.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
<!-- import google icons library -->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<footer class="text-center fixed-bottom" style="background-color: #0081C6;">
<!-- Grid container -->
<div class="row justify-content-around">
<div class="col">
<a type="button" class="btn btn-sm" href="mapView.html">
<div class="material-symbols-outlined">map</div>
<div>Bus Stops</div>
</a>
</div>
<div class="col">
<a type="button" class="btn btn-sm" href="index.html">
<div class="material-symbols-outlined">hail</div>
<div>Nearby Bus</div>
</a>
</div>
<div class="col">
<a type="button" class="btn btn-sm" href="busRoute.html">
<div class="material-symbols-outlined"><span class="material-symbols-outlined">
directions_bus
</span></div>
<div>Bus Routes</div>
</a>
</div>
</div>
<!-- Grid container -->
<div class="text-center p-1" style="background-color: rgba(0, 0, 0, 0.2)">
Translink Project - Charlie Ho
</div>
</footer>