-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreal-estate-listings.html
48 lines (38 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Exceptional Realty Group - Lux 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>
<img src="images/intro-pic.jpg" alt="A beautiful living room." title="Welcome to Exceptional Realty">
<h3>Property Archive</h3>
<h4>2014</h4>
<!-- unordered list -->
<ul>
<li>Dec</li>
<li>Nov</li>
<li>Oct</li>
<ul>
<li>17th</li>
<li>18th</li>
</ul>
</ul>
<h3>Popular Listings</h3>
<!-- ordered list -->
<ol>
<li>348 Stockton St. </li>
<li>3742A Belvadere Rd. </li>
<li>41 Cleaton Ave.</li>
</ol>
</body>
</html>