<html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Welcome to Sparkly Maid Austin</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f0f0f0; } .container { text-align: center; padding: 20px; background-color: #ffffff; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.1); } .container h1 { color: #333; } .link { display: inline-block; margin-top: 20px; padding: 10px 20px; background-color: #007bff; color: #ffffff; text-decoration: none; border-radius: 5px; } .link:hover { background-color: #0056b3; } </style> </head> <body> <div class="container"> <h1>Welcome to Sparkly Maid Austin</h1> <p>Click the link below to visit our website and learn more about our services.</p> <a href="https://www.sparklymaidaustin.com/" class="link">Visit Sparkly Maid Austin</a> </div> </body> </html>