-
Notifications
You must be signed in to change notification settings - Fork 0
/
maps.html
139 lines (131 loc) · 4.44 KB
/
maps.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<title>HBP Maps</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="favicon.png" type="image/png" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.css"
/>
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/maps.css" />
<link rel="stylesheet" href="css/index.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<div class="maps-page">
<img src="svg/leaf-pattern1.svg" class="pattern-svg" />
<div class="big-container container-fluid">
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="index.html">
<img
src="img/logo-notext.png"
alt="HBP Logo"
height="48px"
width="48px"
/>
</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#nav-content"
aria-controls="nav-content"
aria-expanded="true"
aria-label="Toggle navigation"
id="nav-toggle"
>
<span class="navbar-toggler-icon fas fa-bars fa-1x"></span>
</button>
<div class="collapse navbar-collapse" id="nav-content">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="schedule.html">Schedule</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="challenges.html">Challenges</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Maps</a>
</li>
<li class="nav-item">
<a class="nav-link" href="mentors.html">Mentors</a>
</li>
<li class="nav-item">
<a class="nav-link" href="faqs.html">FAQs</a>
</li>
</ul>
<!-- Social media links -->
<ul class="social-media navbar-nav mr-0">
<li class="nav-item">
<a
class="nav-link"
href="https://www.facebook.com/hackbeanpot/"
target="_blank"
>
<i class="fab fa-facebook"></i>
</a>
</li>
<li class="nav-item">
<a
class="nav-link"
href="https://twitter.com/HackBeanpot/"
target="_blank"
>
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="nav-item">
<a
class="nav-link"
href="https://www.instagram.com/hackbeanpot/"
target="_blank"
>
<i class="fab fa-instagram"></i>
</a>
</li>
</ul>
</div>
</nav>
<div class="container mb-5">
<h1>Maps</h1>
<p>
Our hacking space is located at Catalant Technologies:
<a
href="https://goo.gl/maps/Fx6WHort3pWkWWLN7"
target="_blank"
rel="noopener noreferrer"
>
<b>25 Thomson Pl, Boston, MA 02210</b></a
>.
</p>
<p>
Catalant is about an 11 minute walk from South Station:
<a
href="https://goo.gl/maps/NYoye9boxLtJM5Qc9"
target="_blank"
rel="noopener noreferrer"
><b>700 Atlantic Ave, Boston, MA 02110</b></a
>.
</p>
<p>
The MBTA Red Line (inbound) runs to South Station, and makes several
stops throughout Boston.
</p>
<br /><br />
<img class="catalant-map" src="img/catalant-map.png" />
</div>
</div>
</div>
</body>
</html>