-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproperty-listings.html
71 lines (71 loc) · 2.74 KB
/
property-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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css">
<title>Property Listings - Island Real Estate</title>
</head>
<body>
<nav class="container-fluid">
<ul>
<li><strong>Island Real Estate</strong></li>
</ul>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="#for-sale">For Sale</a></li>
<li><a href="#for-rent">For Rent</a></li>
<li><a href="./contact.html" role="button">Contact</a></li>
</ul>
</nav>
<main class="container">
<div class="grid">
<section id="for-sale">
<hgroup>
<h2>Properties for Sale</h2>
<h3>Exclusive Island Homes</h3>
</hgroup>
<article>
<h3>Villa by the Sea</h3>
<p>4 bed, 3 bath villa with stunning sea views. Price: $1.2M</p>
<figure>
<img src="https://source.unsplash.com/featured/?villa" alt="Villa by the Sea" />
</figure>
</article>
<article>
<h3>Beachfront Cottage</h3>
<p>2 bed, 2 bath cottage right on the beach. Price: $800K</p>
<figure>
<img src="https://source.unsplash.com/featured/?beachfront,cottage" alt="Beachfront Cottage" />
</figure>
</article>
</section>
<section id="for-rent">
<hgroup>
<h2>Properties for Rent</h2>
<h3>Find Your Perfect Island Getaway</h3>
</hgroup>
<article>
<h3>Island Condo</h3>
<p>Modern 2 bed condo with pool access. Weekly Rent: $2,500</p>
<figure>
<img src="https://source.unsplash.com/featured/?condo" alt="Island Condo" />
</figure>
</article>
<article>
<h3>Luxury Island Retreat</h3>
<p>Exclusive 3 bed retreat with private beach. Weekly Rent: $4,500</p>
<figure>
<img src="https://source.unsplash.com/featured/?luxury,retreat" alt="Luxury Island Retreat" />
</figure>
</article>
</section>
</div>
</main>
<footer class="container">
<small>
<a href="#">Privacy Policy</a> • <a href="#">Terms of Service</a>
</small>
</footer>
</body>
</html>