-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (109 loc) · 5.38 KB
/
index.html
File metadata and controls
115 lines (109 loc) · 5.38 KB
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
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Manisoné | Premium Real Estate</title>
<link rel="stylesheet" href="./dist/styles/main.css" />
<link
href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Lato:wght@300;400;700&display=swap"
rel="stylesheet">
</head>
<body>
<header class="main-header">
<nav class="main-nav">
<div class="logo">Manisoné</div>
<ul class="main-menu">
<li><a href="index.html">Home</a></li>
<li>
<a href="#">Gallery ▾</a>
<ul class="submenu">
<li><a href="src/pages/gallery.html#sale">Sale</a></li>
<li><a href="src/pages/gallery.html#rent">Rent</a></li>
</ul>
</li>
<li><a href="src/pages/contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class=" hero">
<div class="hero-overlay"></div>
<div class="hero-content">
<h1>Your luxury. Our passion.</h1>
<p>Exceptional properties for discerning clients.</p>
<a href="src/pages/gallery.html" class="hero-btn">Explore Listings</a>
</div>
</section>
<section class="property-category">
<h2>For Sale</h2>
<div class="carousel-container">
<button class="carousel-btn prev">←</button>
<div class="carousel-track">
<article class="property-card">
<img src="./src/assets/img/villa-marbella.jpg" alt="Oceanfront Villa" />
<span class="property-label for-sale">For Sale</span>
<h3>Oceanfront Villa, Marbella</h3>
<p>Discover our exclusive beachfront villa with stunning ocean views.</p>
<a href="src/pages/gallery.html">View More</a>
</article>
<article class="property-card">
<img src="./src/assets/img/chateau-provence.jpg" alt="Oceanfront Villa" />
<span class="property-label for-sale">For Sale</span>
<h3>Château Montclaire, Provence</h3>
<p>Step into timeless elegance in this renovated 18th-century estate surrounded by lavender
fields.</p>
<a href="src/pages/gallery.html">View More</a>
</article>
<article class="property-card">
<img src="./src/assets/img/mansion-london.jpg" alt="Oceanfront Villa" />
<span class="property-label for-sale">For Sale</span>
<h3>Belgravia Mansion, London</h3>
<p>Elegant six-bedroom mansion in central London.</p>
<a href="src/pages/gallery.html">View More</a>
</article>
<article class="property-card">
<img src="./src/assets/img/lakeside-geneva.jpg" alt="Oceanfront Villa" />
<span class="property-label for-sale">For Sale</span>
<h3>Lakeside Retreat, Geneva</h3>
<p>Modern lakeside house with mountain view.</p>
<a href="src/pages/gallery.html">View More</a>
</article>
<article class="property-card">
<img src="./src/assets/img/penthouse-budapest.jpg" alt="Oceanfront Villa" />
<span class="property-label for-sale">For Sale</span>
<h3>Penthouse on the Danube, Budapest</h3>
<p>Riverfront penthouse with private rooftop terrace.</p>
<a href="src/pages/gallery.html">View More</a>
</article>
<article class="property-card">
<img src="./src/assets/img/farmhouse-tuscany.jpg" alt="Oceanfront Villa" />
<span class="property-label for-sale">For Sale</span>
<h3>Tuscan Farmhouse, Florence</h3>
<p>Rustic farmhouse with vineyard in Tuscany..</p>
<a href="src/pages/gallery.html">View More</a>
</article>
</div>
<button class="carousel-btn next">→</button>
</section>
<section class="property-category for-rent-section">
<h2>For Rent</h2>
<div class="carousel-container">
<button class="carousel-btn prev">←</button>
<div class="carousel-track" id="carousel-track"></div>
<button class="carousel-btn next">→</button>
</div>
</section>
<footer class="main-footer">
<nav class="footer-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="./src/pages/gallery.html">Gallery</a></li>
<li><a href="./src/pages/contact.html">Contact</a></li>
</ul>
</nav>
</footer>
</main>
<script src="./src/js/index.js" defer></script>
</body>
</html>