-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
102 lines (71 loc) · 2.91 KB
/
contact.php
File metadata and controls
102 lines (71 loc) · 2.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact | Lisa Craymer and Kyle Watters Wedding</title>
<!-- ### START | METADATA ### -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="Samuel W. Craymer" />
<meta name="description" content="Lisa & Kyle's wedding website contact page." />
<meta charset="utf-8" />
<!-- ### END | METADATA ### -->
<?php include("include.php"); ?>
</head>
<body class="no-sidebars" onload="activeMenuLink('menu-contact')">
<div id="page-wrapper"><div id="page">
<div id="header"><div class="section clearfix">
<!-- ### START | HEADER REGION ### -->
<div class="region region-header">
<?php include("header.php"); ?>
</div><!-- /.region -->
<!-- ### END | HEADER REGION ### -->
</div></div><!-- /.section, /#header -->
<div id="main-wrapper"><div id="main" class="clearfix">
<div id="content" class="column"><div class="section">
<!-- ### START | HIGHLIGHT REGION ### -->
<div class="region region-highlighted">
<!-- START HEADER HERE! -->
<!-- *** START | Content Title *** -->
<h1 class="title" id="page-title">Contact</h1>
<!-- *** END | Content Title *** -->
<!-- END HEADER HERE! -->
</div><!-- /.region -->
<!-- ### END | HIGHLIGHT REGION ### -->
<!-- ### START | MAIN CONTENT REGION ### -->
<div class="region region-content">
<!-- *** START | Main Content *** -->
<div id="block-system-main" class="block block-system first odd">
<div class="content">
<!-- START HERE! -->
<!-- *** START | Contact Info *** -->
<div id="contact-info" style="width:300px; height:115px; margin: 0 auto;" />
<div id="bride-info" style="float:left; text-align:center;">
<h4>BRIDE</h4>
Lisa Craymer<br />
<a href="mailto:lisa@craymer.com">lisa@craymer.com</a><br />
<a href="tel:16133167460">1-613-316-7460</a>
</div>
<div id="groom-info" style="float:right; text-align:center;">
<h4>GROOM</h4>
Kyle Watters<br />
<a href="mailto:kylewatters@live.ca">kylewatters@live.ca</a><br />
<a href="tel:16132669025">1-613-266-9025</a>
</div>
</div>
<!-- *** END | Contact Info *** -->
<!-- END HERE! -->
</div><!--/.content-->
</div><!-- /.block -->
<!-- *** END | Main Content *** -->
</div><!-- /.region -->
<!-- ### END | MAIN CONTENT REGION ### -->
</div></div><!-- /.section, /#content -->
</div></div><!-- /#main, /#main-wrapper -->
<!-- ### START | FOOTER REGION ### -->
<div class="region region-footer">
<?php include("footer.php"); ?>
</div><!-- /.region -->
<!-- ### END | FOOTER REGION ### -->
</div>
</div><!-- /#page, /#page-wrapper -->
</body>
</html>