-
Notifications
You must be signed in to change notification settings - Fork 0
/
real-estate-listings.html
38 lines (33 loc) · 865 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Exceptional Realty Group - Luxury Homes - Listings</title>
</head>
<body>
<h1>Exceptional</h1>
<h2>Realty Group</h2>
<!-- links -->
<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>
<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>
<h3>Popular Listings</h3>
<!-- ordered list -->
<ol>
<li>348 Stockton St.</li>
<li>3742A Belevadere Rd.</li>
<li>41 Cleaton Ave.</li>
</ol>
</body>
</html>