-
Notifications
You must be signed in to change notification settings - Fork 0
/
market-report.html
45 lines (40 loc) · 1001 Bytes
/
market-report.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Exceptional Realty Group - Luxury Homes - Market Report</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>Market Report</h3>
<table>
<tr>
<th>Address</th>
<th>City</th>
<th>State</th>
<th>Sales Price</th>
</tr>
<tr>
<td>2345 Fairview Ln.</td>
<td>Brooklyn</td>
<td>NY</td>
<td>$1.2 mil</td>
</tr>
<tr>
<td>974 Clapton St.</td>
<td>Queens</td>
<td>NY</td>
<td>$998 k</td>
</tr>
<tr>
<td>14A Belmont Way</td>
<td>Bronx</td>
<td>NY</td>
<td>$874 k</td>
</tr>
</table>
</body>
</html>