-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
80 lines (62 loc) · 3.05 KB
/
contact.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
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
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<?php include 'header.html'; ?>
<div id="main_top"></div>
<div id="main_wrapper">
<div id="main">
<h2>Contact Information</h2>
<div class="col col_2">
<h4>Send us a message now!</h4>
<p>If you have any questions please use the form below to send
us an email and we will get back to you asap.</p>
<div id="form">
<form action="#" id="contact" method="post" name="contact">
<label for="author">Name:</label>
<input class="required input_field" id="author" name="author" type="text">
<div class="cleaner h10"></div>
<label for="email">Email:</label> <input class="validate-email required input_field" id="email" name="email" type="text">
<div class="cleaner h10"></div>
<label for="subject">Subject:</label>
<input class="validate-subject required input_field" id="subject" name="subject" type="text">
<div class="cleaner h10"></div>
<label for="text">Message:</label>
<textarea class="required" cols="0" id="text" name="text" rows="0"></textarea>
<div class="cleaner h10"></div>
<input class="submit_btn float_l" id="submit" name="submit" type="submit" value="Send">
<input class="submit_btn float_r" id="reset" name="reset" type="reset" value="Reset">
</form>
</div>
</div>
<div class="col col_2 no_margin_righ">
<h4>Our Location</h4><iframe frameborder="0" height="300"
marginheight="0" marginwidth="0" scrolling="no" src=
"http://maps.google.com/maps?f=q&source=s_q&hl=en&
geocode=&q=Central+Park,+New+York,+NY,+USA&aq=0&sll=14.093957,1.318359&
sspn=69.699334,135.263672&vpsrc=6&ie=UTF8&hq=Central+Park,+New+York,+NY,+USA&
ll=40.778265,-73.96988&spn=0.033797,0.06403&t=m&output=embed"
width="380"></iframe>
<div class="cleaner h30"></div>
<h4>Mailing Address</h4>
<h6><strong>Library</strong></h6>123 Library Road,<br>
Library City<br>
Library<br>
<br>
<strong>Phone:</strong> 8675-309<br>
<strong>Email:</strong> <a href=
"mailto:info@yoursite.com">queries@library.com</a>
</div>
<div class="cleaner"></div>
</div><!-- end of main -->
</div><!-- end of main wrapper -->
<div id="footer">
<div class="center copyright">
<p>Designed by <a>Darren Britton</a></p>
</div>
<div class="cleaner"></div>
</div><!-- end of footer -->
</body>
</html>