Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>MBA Construções</title> <style> /* Add your CSS styles here */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; } header { background-color: #333; color: #fff; padding: 20px; text-align: center; } nav { background-color: #444; color: #fff; padding: 10px; text-align: center; } section { padding: 20px; } footer { background-color: #333; color: #fff; padding: 20px; text-align: center; } </style> </head> <body> <header> <h1>Welcome to MBA Construções</h1> <p>Your go-to solution for alterations and renovations in Porto, Portugal</p> </header> <nav> <a href="#services">Services</a> | <a href="#portfolio">Portfolio</a> | <a href="#team">Our Team</a> | <a href="#contact">Contact Us</a> </nav> <section id="services"> <h2>Services Offered</h2> <p>We specialize in alterations and renovations of residential, commercial, and industrial properties.</p> <p>Contact us for:</p> <ul> <li>Home remodeling</li> <li>Office renovations</li> <li>Industrial facility upgrades</li> <!-- Add more services as needed --> </ul> </section> <section id="portfolio"> <h2>Portfolio</h2> <p>Check out some of our completed projects:</p> <!-- Add images and descriptions of your completed projects --> </section> <section id="team"> <h2>Our Team</h2> <p>Meet the skilled professionals behind MBA Construções:</p> <!-- Add information about your team members --> </section> <section id="contact"> <h2>Contact Us</h2> <p>Ready to get started on your project? Reach out to us!</p> <!-- Add contact information and a contact form --> </section> <footer> <p>© 2024 MBA Construções. All rights reserved.</p> </footer> </body> </html>
Leave a Comment