46 lines
1.2 KiB
HTML
46 lines
1.2 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="fr">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<link rel="stylesheet" href="styles.css">
|
||
|
<title>Pegasus Rental</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<header>
|
||
|
<h1>Welcome to Pegasus Rental</h1>
|
||
|
<p>Your go-to destination for premium rentals</p>
|
||
|
</header>
|
||
|
|
||
|
<section class="search-container">
|
||
|
<h2>Find Your Perfect Rental</h2>
|
||
|
<form id="search-form">
|
||
|
<input type="text" id="location-input" placeholder="Enter location">
|
||
|
<input type="date" id="date-input" placeholder="Select date">
|
||
|
<button type="submit">Search</button>
|
||
|
</form>
|
||
|
</section>
|
||
|
|
||
|
<section class="featured-listings">
|
||
|
<h2>Featured Listings</h2>
|
||
|
<div class="listing" id="listing1">
|
||
|
<img src="property1.jpg" alt="Property 1">
|
||
|
<p>Stunning Beachfront Villa</p>
|
||
|
</div>
|
||
|
<div class="listing" id="listing2">
|
||
|
<img src="property2.jpg" alt="Property 2">
|
||
|
<p>Luxury City Apartment</p>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
<footer>
|
||
|
<p>© 2024 Pegasus Rental. All rights reserved.</p>
|
||
|
</footer>
|
||
|
|
||
|
<script src="script.js"></script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|