forked from Va16hav07/Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
251 lines (245 loc) · 10.9 KB
/
index.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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PropHub - Your Real Estate Destination</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<nav class="navbar">
<div class="logo">PropHub</div>
<div class="nav-links">
<a href="index.html" class="active">Home</a>
<a href="properties.html">Properties</a>
<a href="dasboard.html">Calender</a>
<a href="sell.html">Sell/Rent Property</a>
<div class="auth-buttons">
<a href="signin.html" class="btn-signin">Sign In</a>
<a href="signup.html" class="btn-signup">Sign Up</a>
</div>
</div>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</nav>
<header class="hero">
<div class="hero-content">
<h1>Find Your Dream Property</h1>
<p>Discover thousands of properties for sale and rent</p>
<div class="search-container">
<div class="search-row">
<div class="search-group">
<i class="fas fa-search"></i>
<input type="text" placeholder="Enter location...">
</div>
<div class="search-group">
<i class="fas fa-home"></i>
<select>
<option value="all">All Types</option>
<option value="house">House</option>
<option value="apartment">Apartment</option>
<option value="villa">Villa</option>
<option value="shop">Shop</option>
<option value="office">Office Space</option>
<option value="warehouse">Warehouse</option>
<option value="land">Land</option>
</select>
</div>
<div class="search-group">
<i class="fas fa-tag"></i>
<select>
<option value="all">Buy/Rent</option>
<option value="buy">Buy</option>
<option value="rent">Rent</option>
</select>
</div>
<button class="search-btn">Search</button>
</div>
<div class="advanced-search">
<a href="#" id="advancedSearchToggle">Advanced Search <i class="fas fa-chevron-down"></i></a>
<div class="advanced-search-options" id="advancedSearchOptions">
<div class="search-row">
<div class="search-group">
<label>Price Range</label>
<div class="range-inputs">
<input type="number" placeholder="Min">
<span>to</span>
<input type="number" placeholder="Max">
</div>
</div>
<div class="search-group">
<label>Bedrooms</label>
<select>
<option value="">Any</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4+</option>
</select>
</div>
<div class="search-group">
<label>Property Size</label>
<input type="number" placeholder="Min sq.ft">
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<section class="categories">
<h2>Browse by Category</h2>
<div class="category-grid">
<a href="#" class="category-card">
<i class="fas fa-home"></i>
<h3>Houses</h3>
<p>Find your perfect home</p>
</a>
<a href="#" class="category-card">
<i class="fas fa-building"></i>
<h3>Apartments</h3>
<p>Modern living spaces</p>
</a>
<a href="#" class="category-card">
<i class="fas fa-store"></i>
<h3>Commercial</h3>
<p>Shops & offices</p>
</a>
<a href="#" class="category-card">
<i class="fas fa-tree"></i>
<h3>Land</h3>
<p>Build your dreams</p>
</a>
</div>
</section>
<section class="featured">
<div class="section-header">
<h2>Featured Properties</h2>
<a href="properties.html" class="view-all">View All <i class="fas fa-arrow-right"></i></a>
</div>
<div class="property-grid">
<div class="property-card">
<div class="property-tag">Featured</div>
<img src="https://images.unsplash.com/photo-1564013799919-ab600027ffc6" alt="Modern House">
<div class="property-info">
<span class="property-price">$450,000</span>
<h3>Modern Family House</h3>
<p class="property-location"><i class="fas fa-map-marker-alt"></i> 123 Main St, City</p>
<div class="property-stats">
<span><i class="fas fa-bed"></i> 4 Beds</span>
<span><i class="fas fa-bath"></i> 3 Baths</span>
<span><i class="fas fa-ruler-combined"></i> 2,500 sq.ft</span>
</div>
<div class="property-footer">
<span class="property-type">For Sale</span>
<button class="btn-view">View Details</button>
</div>
</div>
</div>
<div class="property-card">
<img src="https://images.unsplash.com/photo-1522708323590-d24dbb6b0267" alt="Luxury Apartment">
<div class="property-info">
<span class="property-price">$2,500/month</span>
<h3>Luxury Apartment</h3>
<p class="property-location"><i class="fas fa-map-marker-alt"></i> 456 Park Ave, City</p>
<div class="property-stats">
<span><i class="fas fa-bed"></i> 2 Beds</span>
<span><i class="fas fa-bath"></i> 2 Baths</span>
<span><i class="fas fa-ruler-combined"></i> 1,200 sq.ft</span>
</div>
<div class="property-footer">
<span class="property-type">For Rent</span>
<button class="btn-view">View Details</button>
</div>
</div>
</div>
<div class="property-card">
<div class="property-tag">New</div>
<img src="https://images.unsplash.com/photo-1582407947304-fd86f028f716" alt="Commercial Shop">
<div class="property-info">
<span class="property-price">$300,000</span>
<h3>Commercial Shop</h3>
<p class="property-location"><i class="fas fa-map-marker-alt"></i> 789 Market St, City</p>
<div class="property-stats">
<span><i class="fas fa-ruler-combined"></i> 800 sq.ft</span>
<span><i class="fas fa-parking"></i> 2 Parking</span>
</div>
<div class="property-footer">
<span class="property-type">For Sale</span>
<button class="btn-view">View Details</button>
</div>
</div>
</div>
</div>
</section>
<section class="cta">
<div class="cta-content">
<h2>Want to Sell Your Property?</h2>
<p>List your property with us and reach thousands of potential buyers</p>
<a href="sell.html" class="btn-primary">List Your Property</a>
</div>
</section>
<section class="features">
<h2>Why Choose PropHub?</h2>
<div class="features-grid">
<div class="feature-card">
<i class="fas fa-shield-alt"></i>
<h3>Trusted Platform</h3>
<p>Verified properties and secure transactions</p>
</div>
<div class="feature-card">
<i class="fas fa-hand-holding-usd"></i>
<h3>Best Deals</h3>
<p>Competitive prices and great value</p>
</div>
<div class="feature-card">
<i class="fas fa-headset"></i>
<h3>24/7 Support</h3>
<p>Expert assistance whenever you need</p>
</div>
</div>
</section>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>PropHub</h3>
<p>Your trusted partner in real estate</p>
<div class="social-links">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<a href="#">About Us</a>
<a href="#">Properties</a>
<a href="#">Add Property</a>
<a href="#">Contact</a>
</div>
<div class="footer-section">
<h3>Property Types</h3>
<a href="#">Houses</a>
<a href="#">Apartments</a>
<a href="#">Commercial</a>
<a href="#">Land</a>
</div>
<div class="footer-section">
<h3>Contact Us</h3>
<p><i class="fas fa-envelope"></i> info@prophub.com</p>
<p><i class="fas fa-phone"></i> (555) 123-4567</p>
<p><i class="fas fa-map-marker-alt"></i> 123 Real Estate Ave, City</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 PropHub. All rights reserved.</p>
</div>
</footer>
<script src="scripts.js"></script>
</body>
</html>