��<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="Contact BioBin Pros for your cleaning needs. We provide reliable, professional cleaning services for your home, garage, and more."> <meta name="keywords" content="cleaning contact, BioBin Pros contact, professional cleaning services"> <title>Contact Us | BioBin Pros</title> <link rel="stylesheet" href="styles.css"> </head> <body> <!-- Navigation Bar --> <nav> <ul> <li><a href="index.html">Home</a></li> <li><a href="services.html">Services</a></li> <li><a href="contact.html" class="active">Contact</a></li> </ul> </nav> <!-- Main Content --> <main class="contact-page"> <!-- Left Section: Image --> <div class="contact-image"> <img src="cleaner1.jpg" alt="Professional Cleaner" loading="lazy"> </div> <!-- Right Section: Contact Form --> <div class="contact-form"> <h1>Contact Us</h1> <p>We re here to help! Reach out for quotes, questions, or special requests.</p> <!-- Contact Details --> <div class="contact-details"> <p><strong>Phone:</strong> (902) 919-6106</p> <p><strong>Email:</strong> contact@biobinpros.com</p> <a href="mailto:contact@biobinpros.com" class="btn">Email Us</a> </div> <!-- Special Request Form --> <form id="special-request-form"> <label for="name">Your Name:</label> <input type="text" id="name" name="name" placeholder="Enter your name" required> <label for="email">Your Email:</label> <input type="email" id="email" name="email" placeholder="Enter your email" required> <label for="request">Your Request:</label> <textarea id="request" name="request" placeholder="Tell us what you need cleaned" required></textarea> <button type="submit">Send Request</button> </form> </div> </main> <!-- Footer --> <footer> <p>&copy; 2024 BioBin Pros. All rights reserved.</p> <div class="social-icons"> <a href="#"><img src="facebook.png" alt="Facebook"></a> <a href="#"><img src="instagram.png" alt="Instagram"></a> </div> </footer> <script src="script.js"></script> </body> </html>