-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
81 lines (71 loc) · 2.47 KB
/
contact.html
File metadata and controls
81 lines (71 loc) · 2.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Exceptional Realty - Luxury Homes - Contact
</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css">
<link rel="stylesheet" href="css/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"> </script>
</head>
<body>
<h1>Exceptional</h1>
<h2>Realty Group</h2>
<a href="index.html">About</a>
<a href="new-properties.html">New Properties</a>
<a href="real-estate-listings.html">Listings</a>
<a href="market-report.html">Market Report</a>
<a href="contact.html">Contact</a>
<a href="http://hud.gov">H.U.D</a>
<h3>Contact</h3>
<!-- Map -->
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d6055.681498029783!2d-74.02704707675178!3d40.633393865290536!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c2455a0b6b72d1%3A0x328fecab9a844010!2s458+72nd+St%2C+Brooklyn%2C+NY+11209!5e0!3m2!1sen!2sus!4v1435748427864" width="425" height="350" frameborder="0" style="border:0" allowfullscreen></iframe>
<!-- Contact Form -->
<form action="#" method="post">
<label for="fullname">Name</label>
<input type="text" id="fullname" name="fullname" placeholder="Your Name" required>
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Your Email" required>
<label for="phone">Phone</label>
<input type="tel" id="phone" name="phone" placeholder="Your Phone Number (optionaal)">
<label for="message">Message</label>
<textarea id="message" name="message" rows="10"> </textarea>
<input type="submit" value="send">
</form>
<section id="details">
<div>
<h3>Contact</h3>
<p>
email: <a href="mailto:info@exceptionalrealty.com"> info@exceptionalrealty.com</a>
<br>
phone: +1 710 555 1234
</p>
<h3>Correspondence</h3>
<address>
Exceptional Realty<br>
P.O. Box 5555 <br>
Brooklyn, NY 11209
</address>
</div>
<div>
<h3>Links</h3>
<p>
<a href="#" target="_blank">Home Restoration</a><br>
<a href="#" target="_blank">Affordable Mortgages</a><br>
<a href="#" target="_blank">Professional Moving Crew</a>
</p>
</div>
<div>
<h3>Follow</h3>
<p>
<a href="#" target="_blank">Youtube</a>br>
<a href="#" target="_blank">Facebook</a>br>
<a href="#" target="_blank">Twitter</a>br>
</p>
</div>
</section>
<footer>
© 2015 Exceptional Realty. All Rights Reserved.
</footer>
</body>
</html>