-
Notifications
You must be signed in to change notification settings - Fork 0
/
the-wedding.php
47 lines (46 loc) · 1.51 KB
/
the-wedding.php
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
<?php include("opener.php"); ?>
<section class="content">
<div class="infoContainer">
<ul>
<li>
<div class="infoKey">
<span>Location:</span>
</div>
<div class="infoValue">
<span>
<em>Spring Lake</em><br>
<a href="http://goo.gl/maps/kQKfs">445 Government Farm Road<br>Rockmart, GA</a>
</span>
</div>
</li>
<li>
<div class="infoKey">
<span>Time:</span>
</div>
<div class="infoValue">
<span>5:00pm</span>
</div>
</li>
<li>
<div class="infoKey">
<span>Accommodations:</span>
</div>
<div class="infoValue">
<span>
<em>Econo Lodge Inn</em><br>
<tel>(678) 757-1107</tel><br>
<a href="http://goo.gl/maps/OwPxP">2022 Etowah Drive<br>Rockmart, GA</a><br>
Book your stay ASAP. They fill up early this time of year.
</span>
</div>
</li>
</ul>
</div>
<div class="map">
<a href="http://goo.gl/maps/kQKfs">
<img src="/media/map.jpg" alt="map">
</a>
</div>
</section>
<?php include("footer.php"); ?>
<?php include("closer.php"); ?>