Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta content="width=device-width, initial-scale=1.0" name="viewport" /> <meta content="ie=edge" http-equiv="X-UA-Compatible" /> <title>Cybervendon Agency - Under Construction</title> <style type="text/css">/* Basic Reset */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Body and background */ body { font-family: 'Arial', sans-serif; background-color: white; color: #333; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; text-align: center; } /* Container */ .container { max-width: 800px; padding: 20px; border-radius: 8px; background-color: #fff; box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); text-align: center; padding: 40px; } /* Logo Text */ h1 { font-size: 3rem; color: #333; font-weight: bold; letter-spacing: 1px; } /* Tagline or Agency Description */ p { font-size: 1.2rem; color: #666; margin-bottom: 30px; } /* Under Construction Text */ .under-construction { font-size: 2rem; font-weight: bold; color: #ff6600; /* Orange color */ margin-bottom: 20px; } /* Animated Bar */ .progress-bar { width: 100%; height: 4px; background-color: #f0f0f0; margin-bottom: 20px; border-radius: 5px; } .progress-bar div { width: 60%; /* Adjust progress percentage */ height: 100%; background-color: #ff6600; border-radius: 5px; animation: loading 3s ease-in-out infinite; } @keyframes loading { 0% { width: 0%; } 50% { width: 60%; } 100% { width: 0%; } } /* Footer */ .footer { margin-top: 30px; color: #777; font-size: 0.9rem; } .footer a { color: #ff6600; text-decoration: none; } .footer a:hover { text-decoration: underline; } /* Responsive Design */ @media screen and (max-width: 600px) { h1 { font-size: 2.5rem; } .under-construction { font-size: 1.8rem; } } </style> </head> <body> <div class="container"><!-- Header Section --> <h1>Welcome to Cybervendon.agency</h1> <p>Our website is currently under construction. We're working hard to bring you an amazing experience!</p> <!-- Under Construction Message --> <div class="under-construction">Under Construction</div> <!-- Progress Bar Animation --> <div class="progress-bar"> <div> </div> </div> <!-- Footer Section --> <div class="footer"> <p>Stay tuned for updates. Meanwhile, you can <a href="mailto:contact@cybervendon.agency">contact us</a> via email for inquiries.</p> </div> </div> </body> </html>
Leave a Comment