-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproperties.html
157 lines (153 loc) · 6.99 KB
/
properties.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Properties - PropHub</title>
<link rel="stylesheet" href="prop.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">Home</a>
<a href="properties.html" class="active">Properties</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="page-header">
<h1>Explore Our Properties</h1>
<p>Find your ideal property from our extensive collection.</p>
</header>
<section class="property-filter">
<h2>Filter & Sort</h2>
<form>
<div class="filter-group">
<label for="propertyType">Property Type</label>
<select id="propertyType">
<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="land">Land</option>
</select>
</div>
<div class="filter-group">
<label for="transactionType">Transaction Type</label>
<select id="transactionType">
<option value="all">Buy/Rent</option>
<option value="buy">Buy</option>
<option value="rent">Rent</option>
</select>
</div>
<div class="filter-group">
<label for="priceRange">Price Range</label>
<div class="range-inputs">
<input type="number" id="minPrice" placeholder="Min">
<span>to</span>
<input type="number" id="maxPrice" placeholder="Max">
</div>
</div>
<div class="filter-group">
<label for="sortBy">Sort By</label>
<select id="sortBy">
<option value="relevance">Relevance</option>
<option value="priceLowHigh">Price: Low to High</option>
<option value="priceHighLow">Price: High to Low</option>
<option value="newest">Newest Listings</option>
</select>
</div>
<button type="submit" class="btn-primary">Apply Filters</button>
</form>
</section>
<section class="property-list">
<h2>Properties</h2>
<div class="property-grid">
<div class="property-card">
<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>
<button class="btn-view">View Details</button>
</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>
<button class="btn-view">View Details</button>
</div>
</div>
<div class="property-card">
<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>
<button class="btn-view">View Details</button>
</div>
</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>Contact Us</h3>
<p><i class="fas fa-envelope"></i> [email protected]</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>