Untitled
unknown
plain_text
7 months ago
2.1 kB
2
Indexable
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Brooklyn Handyman Services</title> <link rel="stylesheet" href="styles.css"> </head> <body> <header> <div class="logo"> <h1>Brooklyn Handyman Services</h1> </div> <nav> <ul> <li><a href="#about">About</a></li> <li><a href="#services">Services</a></li> <li><a href="#contact">Contact</a></li> </ul> </nav> </header> <section id="about"> <h2>About Us</h2> <p> Welcome to Brooklyn Handyman Services! With years of experience, we specialize in home remodeling, repairs, and maintenance. From fixing leaks to complete renovations, we provide reliable, high-quality service you can count on. Based in Brooklyn, New York, we’re here to make your home projects stress-free and affordable. </p> </section> <section id="services"> <h2>Our Services</h2> <ul> <li>General Repairs</li> <li>Home Remodeling</li> <li>Plumbing and Electrical Fixes</li> <li>Furniture Assembly</li> <li>Painting and Drywall</li> <li>Custom Work and More</li> </ul> </section> <section id="contact"> <h2>Contact Us</h2> <p>Have a project in mind? Get in touch!</p> <form> <label for="name">Name:</label> <input type="text" id="name" name="name" required> <label for="email">Email:</label> <input type="email" id="email" name="email" required> <label for="message">Message:</label> <textarea id="message" name="message" rows="5" required></textarea> <button type="submit">Send</button> </form> </section> <footer> <p>© 2024 Brooklyn Handyman Services. All Rights Reserved.</p> <p>Serving Brooklyn, New York</p> </footer> </body> </html>
Editor is loading...
Leave a Comment