Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Popup - CLT Garage Door Repair</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; display: flex; justify-content: center; align-items: center; height: 100vh; } .popup { width: 90%; max-width: 500px; background: #fff; border: 2px solid #ccc; border-radius: 8px; padding: 20px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); text-align: center; } .popup img { width: 100px; height: auto; margin-bottom: 20px; } .popup h1 { color: #007BFF; font-size: 24px; margin-bottom: 15px; } .popup p { font-size: 16px; margin-bottom: 15px; } .popup .contact { font-size: 18px; font-weight: bold; margin-top: 20px; } </style> </head> <body> <div class="popup"> <img src="garage-icon.png" alt="Garage Door Icon"> <h1>SAME DAY SERVICE</h1> <p>๐ <strong>Fast & Reliable Garage Door Repair</strong></p> <p>โ <strong>Where Are We?</strong><br> We proudly serve in North Carolina, particularly Charlotte and surrounding areas!</p> <p>๐ฒ <strong>How Much Will It Cost?</strong><br> Get a <strong>FREE quote</strong> for any next-day service, or call us now to get a technician for same-day service for only <strong>$29.99</strong>. No hidden fees, just honest pricing.</p> <p>๐จ <strong>Why Are Repair Costs Displayed On-Site Only?</strong><br> Repair costs depend on the type of service needed and the specific issues with your garage door. To ensure transparency and provide you with the most accurate pricing, we evaluate each situation directly at the service location.</p> <p class="contact">๐ง Contact Us Now: <a href="tel:7049157041">704-915-7041</a><br> Weโre here to fix your garage door problems fast and give you peace of mind!</p> </div> </body> </html>
Leave a Comment