Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Prestigious Forest Estates</title> <style> body { font-family: 'Times New Roman', serif; margin: 0; padding: 0; background-color: #f5f5f5; } header { background-color: #4CAF50; color: white; text-align: center; padding: 1em; } section { padding: 2em; text-align: center; } footer { background-color: #4CAF50; color: white; text-align: center; padding: 1em; position: fixed; bottom: 0; width: 100%; } </style> </head> <body> <header> <h1>Prestigious Forest Estates</h1> <p>Your Gateway to Exclusive Living</p> </header> <section> <h2>Discover Serenity in Our Gated Community</h2> <p>Own a piece of paradise in the heart of a prestigious forest region. Unmatched beauty, exclusivity, and tranquility await you.</p> <button>Contact Us</button> </section> <footer> <p>© 2024 Prestigious Forest Estates. All rights reserved.</p> </footer> </body> </html>
Leave a Comment