-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreal-estate-listings.html
109 lines (96 loc) · 3.42 KB
/
real-estate-listings.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Exceptional Realty Group - Luxury Homes - Listings</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.2/normalize.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
</head>
</head>
<body>
<header>
<div id="logo">
<h1>Exceptional</h1>
<h2>Realty Group</h2>
</div>
<nav>
<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" target="_blank">H.U.D.</a>
</nav>
</header>
<section>
<h3>Condos</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Itaque, perspiciatis atque amet repudiandae sed unde facilis tempora aspernatur. Repellendus, beatae eaque velit dolores incidunt reprehenderit officiis consectetur impedit numquam ad.</p>
</section>
<section>
<h3>Townhomes</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Itaque, perspiciatis atque amet repudiandae sed unde facilis tempora aspernatur. Repellendus, beatae eaque velit dolores incidunt reprehenderit officiis consectetur impedit numquam ad.</p>
</section>
<section>
<h3>Co-Ops</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Itaque, perspiciatis atque amet repudiandae sed unde facilis tempora aspernatur. Repellendus, beatae eaque velit dolores incidunt reprehenderit officiis consectetur impedit numquam ad.</p>
</section>
<h2 class="milk-text">Featured Listings</h2>
<section>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Rerum, molestias, quaerat in commodi autem itaque officia laboriosam fugiat perferendis et assumenda cum aliquid. Officia, officiis ullam deleniti est illum dignissimos!</p>
</section>
<section>
<h3>Property Archive</h3>
<h4>2014</h4>
<!-- unordered list -->
<ul>
<li>Dec</li>
<li>Nov</li>
<li>Oct
<ul>
<li>17th</li>
<li>18th</li>
</ul>
</li>
</ul>
<section>
<section>
<h3>Popular Listings</h3>
<!-- ordered list -->
<ol>
<li>348 Stockton St.</li>
<li>3742A Belevadere Rd.</li>
<li>41 Cleaton Ave.</li>
</ol>
</section>
<section id="details">
<div>
<h3>Contact</h3>
<p>
email: <a href="mailto:[email protected]">[email protected]</a><br>
phone: +1 710 555 1234
</p>
<h3>Correspondence</h3>
<address>
Exceptional Realty<br>
P.O.Box 5555<br>
Brooklyn, NY 11201
</address>
</div>
<div>
<h3>Links</h3>
<p>
<a href="#" target="_blank">Home Restoration</a><br>
<a href="#" target="_blank">Afordable 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>
</p>
</div>
</section>
<footer>
© 2014 Exceptional Realty. All Rights Reserved.
</footer>
</body>
</html>