This repository was archived by the owner on Feb 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmembership.html
167 lines (155 loc) · 6.33 KB
/
membership.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html>
<head>
<title>Membership</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<!-- header will contain the nav bar-->
<header>
<nav>
<a href="homePage.html">Home</a>
<a href="orchid.html">Orchid Show</a>
<a href="membership.html" class="active">Membership</a>
<a href="about.html">About</a>
</nav>
</header>
<body>
<!--this div will contain the logo which is just the text NYBG, with the img-->
<div>
<h1 class="logo">NYBG</h1>
<img src="https://www.tomato.sg/wp-content/uploads/006_GBTB.jpg" alt="Orchid Show arches" class="bgImg">
</div>
<!--this div contains the #plantlove link that will forward users to the official website-->
<div style="text-align:right;">
<a href="https://www.nybg.org/about/plantlove/" target="_blank">
<h1 class="plantLove">#plantlove</h1>
</a>
</div>
<!--this div will contain the whole body text including the table-->
<div class="marginFix">
<!--this div will contain the first text of the body. either home, orchid, or membership-->
<div>
<h1 class="bodyTop">Membership at the garden</h1>
</div>
<!-- general info about memberships of the garden-->
<p>With something new to discover in every season, you'll want to visit again and again.
Join today and receive free admission-plus exclusive Member benefits-for an entire year.
That way you can escape to our urban oasis anytime...whatever the season or reason.</font>
</p>
<p>Members also receive guest passes, parking passes, discounts at the NYBG Shop and on education
programs, and more. Enjoy all our wonderful programs, and receive invitations to special
Members-Only Previews, trips, tours, and events. Plus, your Membership travels with you with
reciprocal benefits at more than 200 gardens and arboreta nationwide, all while supporting
NYBG's efforts in science, education, and horticulture that impact communities locally and
around the world.
</p>
<!-- this table is used to show users what type of membership is available-->
<table>
<thead>
<!--type of membership-->
<tr>
<!--create row-->
<th>Type</th>
<th>Price</th>
<th>Unlimited Admission</th>
<th>Parking Passes</th>
<th>Guess Passes</th>
<th>Early Morning Grounds Access</th>
<th>Sturdy, reusable NYBG tote bag</th>
</tr>
</thead>
<tbody>
<tr>
<td>Individual</td>
<td>$85</td>
<td>1 adult</td>
<td>4</td>
<td>2</td>
<td>-</td>
<td>-</td>
</tr>
<tr>
<td>Dual</td>
<td>$110</td>
<td>2 adults</td>
<td>6</td>
<td>2</td>
<td>-</td>
<td>-</td>
</tr>
<tr>
<td>Family</td>
<td>$135</td>
<td>2 adults & up to 5 children</td>
<td>8</td>
<td>4</td>
<td>-</td>
<td>-</td>
</tr>
<tr>
<td>Supporting</td>
<td>$275</td>
<td>2 adults & up to 5 children</td>
<td>Unlimited</td>
<td>8</td>
<td>Yes</td>
<td>-</td>
</tr>
<tr>
<td>Contributing</td>
<td>$600</td>
<td>4 adults & up to 5 children</td>
<td>Unlimited</td>
<td>10</td>
<td>Yes</td>
<td>Yes</td>
</tr>
<tr>
<td>Sustaining</td>
<td>$1,000</td>
<td>4 adults & up to 5 children</td>
<td>Unlimited</td>
<td>14</td>
<td>Yes</td>
<td>Yes</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Garden Patrons Program</td>
<td>$1,500 & above</td>
<!-- this value holds 5 rows with colspan = 5-->
<td colspan="5">Garden Patrons receive exclusive access to NYBG's curators, scientists,
educators, and horticulturists, and enjoy a unique insider's view of one of the world's
most celebrated gardens. Visit
<a href="https://www.nybg.org/join-support/garden-patrons/" target="_blank">
nybg.org/patrons</a> for more information.
</td>
</tfoot>
</tr>
</table>
<!--bullet point lists of extra info on memberships-->
<ul>
<li>Some special events may be excluded.</li>
<li>They make every effort to accomidate their members, but parking is first-come, first-served, and is
not
guarenteed.</li>
<li>Sustaining members also recieve exclusive invitations to events with curatioral staff, exhibition
openings,
galas, and lectures.</li>
</ul>
</div>
</body>
<!-- footer contains contact info and address of NYBG-->
<footer>
<!--this div contains the text-->
<div class="generalInfo">
<h2>Location</h2>
<h5><a href = "https://www.nybg.org/visit/directions/">2900 Southern Boulevard, Bronx, NY 10458-5126</a></h5>
<h2>General Info</h2>
<h5>Call: 718.817.8700</h5>
</div>
</footer>
</html>