Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Early Co. - Real Estate Consulting</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; color: #333; background-color: #f4f4f4; } header { background-color: #333; color: #fff; padding: 1rem 0; text-align: center; } .container { width: 80%; margin: 0 auto; overflow: hidden; } .section { padding: 2rem 0; border-bottom: 1px solid #ddd; } .section:last-of-type { border-bottom: none; } h1, h2 { color: #333; } footer { background-color: #333; color: #fff; text-align: center; padding: 1rem 0; } a { color: #3498db; text-decoration: none; } a:hover { text-decoration: underline; } </style> </head> <body> <header> <div class="container"> <h1>Early Co.</h1> <p>Real Estate Consulting Experts</p> </div> </header> <div class="container"> <section class="section" id="about"> <h2>About Us</h2> <p>Welcome to Early Co., where we provide top-notch consulting services in the real estate sector. Our team of experts offers insights and strategies to help you navigate the complex world of real estate with confidence.</p> </section> <section class="section" id="services"> <h2>Our Services</h2> <ul> <li>Market Analysis</li> <li>Investment Strategies</li> <li>Property Valuation</li> <li>Development Consulting</li> <li>Real Estate Management</li> </ul> </section> <section class="section" id="contact"> <h2>Contact Us</h2> <p>If you have any questions or would like to schedule a consultation, please reach out to us:</p> <p>Email: <a href="mailto:info@earlyco.com">info@earlyco.com</a></p> <p>Phone: +1 (123) 456-7890</p> <p>Address: 123 Business Rd, Suite 456, City, State, ZIP</p>
Leave a Comment