-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlayeredArchSet.php
More file actions
486 lines (384 loc) · 16.1 KB
/
Copy pathlayeredArchSet.php
File metadata and controls
486 lines (384 loc) · 16.1 KB
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
<?php
require('header.php');
?>
<script>
document.getElementById("headerImage").style.backgroundImage = "url('img/headerImages/layeredArch.jpg')";
document.getElementById("headerImage").style.backgroundPosition = "50% 45%";
</script>
<section class= "sectionSetDescription">
<div class="topper">
<h2 class="section-head">LAYERED ARCH RENTAL PIECES
</h2>
<center>
<div class=text-box>
<p id="setDescription" class="description">This set features 3-D gold acrylic lettering and frosted acrylic, paired with playful wooden arches.<br>
Delivery and pick-up is included in our pricing within a 30 mile radius of Orrville OH.</p> </div>
</center>
</div>
</section>
<section class= "sectionColorOptions">
<div class="topper">
<h2 class="section-head">COLOR OPTIONS
</h2>
<center>
<div class=text-box>
<p id="colorOptionsDescription" class="description">Included in our pricing is your choice of these 5 color options. The set is staged above in "Muted Blush.” Should a client choose a different color pictured below, the bases would remain white, and the frosted acrylic and gold lettering would remain the same. Any arch or half arch, that appears in the blush color, would be the only layers appearing in the alternative color. </p> </div>
</center>
</div>
</section>
<!-- Image cards displaying color options -->
<div class="row">
<div class="col-sm-6" style="width: 18rem;">
<div class="card">
<img class="card-img-top" src="img/layeredArchPageImages/Terra-cottaColorOption.jpg" alt="Card image cap">
<div class="card-body">
<p class="card-text">Terra-cotta</p>
</div>
</div>
</div>
<div class="col-sm-6" style="width: 18rem;">
<div class="card">
<img class="card-img-top" src="img/layeredArchPageImages/Black TieColorOption.jpeg" alt="Card image cap">
<div class="card-body">
<p class="card-text">Black Tie</p>
</div>
</div>
</div>
<div class="col-sm-6" style="width: 18rem;">
<div class="card">
<img class="card-img-top" src="img/layeredArchPageImages/Muted BlushColorOption.jpg" alt="Card image cap">
<div class="card-body">
<p class="card-text">Muted Blush</p>
</div>
</div>
</div>
<div class="col-sm-6" style="width: 18rem; ">
<div class="card">
<img class="card-img-top" src="img/layeredArchPageImages/Soft SageColorOption.jpeg" alt="Card image cap">
<div class="card-body">
<p class="card-text">Soft Sage</p>
</div>
</div>
</div>
<div class="col-sm-6" style="width: 18rem;">
<div class="card">
<img class="card-img-top" src="img/layeredArchPageImages/GreyColorOption.jpg" alt="Card image cap">
<div class="card-body">
<p class="card-text">Grey</p>
</div>
</div>
</div>
</div>
<div id="buttonDiv" class="row justify-content-center">
<button onclick="window.location.href='https://orange.greenriverdev.com/weddingRentals/extras.php';" id="checkAvailabilityButton" type="submit" class="btn">Extras Page</button>
</div>
<!-- TO DO:
here is where we need 2 columns: 1 with the image and 1 with the text
-->
<section class= "sectionPick6set">
<div class="container">
<div class="row">
<div class="col-sm">
<img src="img/layeredArchPageImages/image1.jpg" class="img-fluid" alt="Responsive image">
</div>
<div class="col-sm">
<h1>PERSONALIZED 3-D FROSTED ACRYLIC WELCOME SIGN WITH FLOWER TRELLIS</h1>
<p>Choose from trellis for flowers (pictured) or smooth half arch (below).</p>
<p>Can be selected as a part of any layered arch rental package.</p>
</div>
</div>
<div class="row">
<div class="col-sm">
<h1>PERSONALIZED 3-D FROSTED ACRYLIC WELCOME SIGNWITH SMOOTH HALF ARCH.</h1>
<p>Custom text (up to 25 words) can be added to the smooth half arch at no additional fee.</p>
<p>The smooth half arch option is commonly used for a message to guests or order of events.</p>
</div>
<div class="col-sm">
<img src="img/layeredArchPageImages/image2.jpg" class="img-fluid" alt="Responsive image">
</div>
</div>
<div class="row">
<div class="col-sm">
<img src="img/layeredArchPageImages/image3.jpg" class="img-fluid" alt="Responsive image">
</div>
<div class="col-sm">
<h1>3 PIECE HALF ARCH SEATING CHART</h1>
<p>This chart displays table assignments (pictured), escort cards, or can be directly lettered with guests names (additional fees may apply).</p>
<p>Accommodates up to 30 tables.</p>
<p>Enjoy the ease of our print service and golden half-arch embellishment application. ($4/card)</p>
</div>
</div>
<div class="row">
<div class="col-sm">
<h1>TABLE NUMBERS</h1>
<p>Table numbers 1-30 are included in Rental Set. </p>
<p>Additional numbers are available upon request.</p>
</div>
<div class="col-sm">
<img src="img/layeredArchPageImages/image4.jpg" class="img-fluid" alt="Responsive image">
</div>
</div>
<div class="row">
<div class="col-sm">
<img src="img/layeredArchPageImages/image5.jpg" class="img-fluid" alt="Responsive image">
</div>
<div class="col-sm">
<h1>GLASS AND GOLDLOCKING CARD TERRARIUM</h1>
<p>13”x 6.5”x 9” terrarium contains and protects cards. </p>
<p>Lock & Key included with rental.</p>
</div>
</div>
<div class="row">
<div class="col-sm">
<h1>RESERVED SIGNS</h1>
<p>Set of 5 signs.</p>
</div>
<div class="col-sm">
<img src="img/layeredArchPageImages/image6.jpg" class="img-fluid" alt="Responsive image">
</div>
</div>
</div>
</section>
<hr>
<!-- Image cards displaying Small “Double Half Arch” Signs options -->
<section class= "Small “Double Half Arch” Signs">
<div class="topper">
<h2 class="section-head">Small “Double Half Arch” Signs
</h2>
<center>
<div class=text-box>
<p id="Small “Double Half Arch” Signs description" class="description">Available in “In Loving Memory,” “Take One,” “Gifts and Cards,” & “Don’t Mind if I Do” </p> </div>
</center>
</div>
</section>
<!-- Image cards displaying Small “Double Half Arch” Signs
options -->
<div class="row">
<div class="col-sm" style="width: 18rem;">
<div class="card">
<img class="card-img-top" src="img/layeredArchPageImages/inLovingMemory.jpg" alt="Card image cap">
</div>
</div>
<div class="col-sm" style="width: 18rem;">
<div class="card">
<img class="card-img-top" src="img/layeredArchPageImages/takeOne.jpg" alt="Card image cap">
</div>
</div>
<div class="col-sm" style="width: 18rem;">
<div class="card">
<img class="card-img-top" src="img/layeredArchPageImages/giftsCards.jpg" alt="Card image cap">
</div>
</div>
<div class="col-sm" style="width: 18rem;">
<div class="card">
<img class="card-img-top" src="img/layeredArchPageImages/iDo.jpg" alt="Card image cap">
</div>
</div>
</div>
<!-- Image cards displaying Small “Sunset” Signs
options -->
<section class= "Small “Sunset” Signs">
<div class="topper">
<h2 class="section-head">Small “Sunset” Signs
</h2>
<center>
<div class=text-box>
<p id="Small “Double Half Arch” Signs description" class="description">Available in “Gifts and Cards,” “Guestbook,” & “In Loving Memory”” </p>
</div>
</center>
</div>
</section>
<!-- Image cards displaying Small “Sunset” Signs
options -->
<div class="row">
<div class="col-sm" style="width: 18rem;">
<div class="card">
<img class="card-img-top" src="img/layeredArchPageImages/giftsAndCards.jpg" alt="Card image cap">
</div>
</div>
<div class="col-sm" style="width: 18rem;">
<div class="card">
<img class="card-img-top" src="img/layeredArchPageImages/inLovingMemoryBig.jpg" alt="Card image cap">
</div>
</div>
<div class="col-sm" style="width: 18rem;">
<div class="card">
<img class="card-img-top" src="img/layeredArchPageImages/guestbook.jpg" alt="Card image cap">
</div>
</div>
</div>
<hr>
<section class="sectionPick6set">
<div id="unpluggedCeremonySignRow" class="row">
<div class="col-sm">
<h1>UNPLUGGED CEREMONY SIGN</h1>
<p>Medium Double Full Arch design in our table-top base.</p>
</div>
<div class="col-sm">
<img class="card-img-top" src="img/layeredArchPageImages/image7.jpg" alt="Card image cap">
</div>
</div>
<hr>
<div class="row">
<div class="col-sm">
<img class="card-img-top" src="img/layeredArchPageImages/image8.jpg" alt="Card image cap">
</div>
<div class="col-sm">
<h1>SIGNATURE DRINK(S)</h1>
<p>Medium Double Full Arch design in our table-top base.</p>
<p>Customized text on the colored portion of the design is included in the rental price (up to 25 words).
Lock & Key included with rental.</p>
<p>A custom acrylic heading can be created for an added fee.</p>
</div>
</div>
</section>
<hr>
<section>
<div class="topper">
<h2 class="section-head">Medium Double Half Arch Custom Sign</h2>
<center>
<div class=text-box>
<p id="colorOptionsDescription" class="description">Choose from our 3 gold headings on the acrylic side, and incorporate your custom menu or guestbook instructions on the colored side. Customized text on the colored side is included in the rental price (up to 25 words).
</p>
<p>Custom acrylic headings can be created for an added fee. </p>
</div>
</center>
</div>
<div class="row">
<div class="col-sm" style="width: 18rem;">
<div class="card">
<img class="card-img-top" src="img/layeredArchPageImages/image9.jpg" alt="Card image cap">
</div>
</div>
<div class="col-sm" style="width: 18rem;">
<div class="card">
<img class="card-img-top" src="img/layeredArchPageImages/image10.jpg" alt="Card image cap">
</div>
</div>
<div class="col-sm" style="width: 18rem;">
<div class="card">
<img class="card-img-top" src="img/layeredArchPageImages/image11.jpg" alt="Card image cap">
</div>
</div>
</div>
</section>
<hr>
<section class="sectionPick6set">
<div class="row">
<div class="col-sm">
<img src="img/layeredArchPageImages/image12.jpg" class="img-fluid" alt="Responsive image">
</div>
<div class="col-sm">
<h1>HAIR-PIN RECORD PLAYER PROP</h1>
<p>Add a vintage twist to your guestbook. </p>
<p>(Records and pens not included).</p>
</div>
</div>
<div class="row">
<div class="col-sm">
<h1>CUSTOMIZED HEAD TABLE KEEPSAKE</h1>
<p>This custom piece is a free gift, yours to keep, with any Pick 6 or Full Package Rental. It also can be selected as a part of the Pick 4 package.</p>
</div>
<div class="col-sm">
<img src="img/layeredArchPageImages/image13.jpg" class="img-fluid" alt="Responsive image">
</div>
</div>
</section>
<section class= "sectionRentalPackages">
<div class="topper">
<h4 class="section-head">LAYERED ARCH RENTAL PACKAGES <br>
Pricing includes delivery & tear down (30 mile radius of Orrville, OH)
</h4>
<center>
<div class=text-box>
<p id="sectionRentalPackagesDescription" class="description">Delivery & tear down is available beyond the 30 miles for an additional fee.
</p>
</div>
</center>
</div>
</section>
<section class= "sectionFullSet">
<div class="topper setDescription">
<h4 class="section-head sectionSetDescription">FULL SET Rental $849
</h4>
<center>
<div class=text-box>
<p id="sectionRentalPackagesDescription" class="description">INCLUDES EACH OF THE FOLLOWING ITEMS
</p>
</div>
</center>
<ul class="list-group">
<li>Customized welcome sign (choice of trellis half arch or smooth half arch insert up to 25 words text)</li>
<li>3 piece seating chart half arch set (print service for cards is available for a small additional fee)</li>
<li>Table numbers 1-30</li>
<li>Gold Card Terrarium with choice of “Gifts & Cards” sign</li>
<li>5 “Reserved” signs</li>
<li>Up to 2 Double Half Arch Small signs (“Gifts & Cards,” “Take One,” “Don't Mind if I Do,” “In Loving Memory”)</li>
<li>Up to 2 Sunset Small signs (“Please Sign Our Guestbook,” “Gifts & Cards,” “In Loving Memory”)</li>
<li>1 Double Half Arch Medium sign (“Cheers,” “The Bar,” “Guestbook,” or Custom Acrylic Text)</li>
<li>1 Double Full Arch Medium sign (“Signature Drinks,” or Custom Acrylic Text) </li>
<li>Unplugged Ceremony sign</li>
<li>Hairpin Record Player Prop</li>
<li>"Mr & Mrs" Custom Head Table Keepsake is a free gift in addition to the items above</li>
</ul>
</div>
</section>
<section class= "sectionPick6set">
<div class="topper setDescription">
<h4 class="section-head sectionSetDescription">PICK 6 Rental $749
</h4>
<center>
<div class=text-box>
<p id="sectionRentalPackagesDescription" class="description">CHOOSE 6 OF THE FOLLOWING ITEMS
</p>
</div>
</center>
<ul class="list-group">
<li>Customized welcome sign (choice of trellis half arch or smooth half arch insert up to 25 words text)</li>
<li>3 piece seating chart half arch set (print service for cards is available for a small additional fee)</li>
<li>Table numbers 1-30</li>
<li>Gold Card Terrarium with choice of “Gifts & Cards” sign</li>
<li>5 “Reserved” signs</li>
<li>Up to 2 Double Half Arch Small signs (“Gifts & Cards,” “Take One,” “Don't Mind if I Do,” “In Loving Memory”)</li>
<li>Up to 2 Sunset Small signs (“Please Sign Our Guestbook,” “Gifts & Cards,” “In Loving Memory”)</li>
<li>1 Double Half Arch Medium sign (“Cheers,” “The Bar,” “Guestbook,” or Custom Acrylic Text)</li>
<li>1 Double Full Arch Medium sign (“Signature Drinks,” or Custom Acrylic Text) </li>
<li>Unplugged Ceremony sign</li>
<li>Hairpin Record Player Prop</li>
<li>"Mr & Mrs" Custom Head Table Keepsake is a free gift in addition to the items above</li>
</ul>
</div>
</section>
<section class= "sectionPick4set">
<div class="topper setDescription">
<h4 class="section-head sectionSetDescription">PICK 4 Rental $699
</h4>
<center>
<div class=text-box>
<p id="sectionRentalPackagesDescription" class="description">CHOOSE 4 OF THE FOLLOWING ITEMS
</p>
</div>
</center>
<ul class="list-group">
<li>Customized welcome sign (choice of trellis half arch or smooth half arch insert up to 25 words text)</li>
<li>3 piece seating chart half arch set (print service for cards is available for a small additional fee)</li>
<li>Table numbers 1-30</li>
<li>Gold Card Terrarium with choice of “Gifts & Cards” sign</li>
<li>5 “Reserved” signs</li>
<li>Up to 2 Double Half Arch Small signs (“Gifts & Cards,” “Take One,” “Don't Mind if I Do,” “In Loving Memory”)</li>
<li>Up to 2 Sunset Small signs (“Please Sign Our Guestbook,” “Gifts & Cards,” “In Loving Memory”)</li>
<li>1 Double Half Arch Medium sign (“Cheers,” “The Bar,” “Guestbook,” or Custom Acrylic Text)</li>
<li>1 Double Full Arch Medium sign (“Signature Drinks,” or Custom Acrylic Text) </li>
<li>Unplugged Ceremony sign</li>
<li>Hairpin Record Player Prop</li>
<li>"Mr & Mrs" Custom Head Table Keepsake is a free gift in addition to the items above</li>
</ul>
</div>
</section>
<div id="buttonDiv" class="row justify-content-center">
<button onclick="window.location.href='https://orange.greenriverdev.com/weddingRentals/extras.php';" id="checkAvailabilityButton" type="submit" class="btn">Extras Page</button>
</div>
<?php
//footer
require('footer.php');
?>