Urban Pulse - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Urban Pulse</title> <style> @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap'); @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css'); body { font-family: 'Open Sans', sans-serif; background: #1c1c1c; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; overflow: hidden; } .main-content { background: #3a3a3a; color: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.2); border-radius: 8px; overflow: hidden; max-width: 800px; width: 100%; animation: fade-in 1s ease-out; } @keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } .header { background: #282828; color: #fff; padding: 20px; text-align: center; font-size: 24px; font-weight: 700; border-bottom: 2px solid #555; } .content { padding: 20px; } .content p { font-size: 16px; line-height: 1.6; color: #ddd; margin-bottom: 20px; } .content .cta { display: flex; justify-content: center; margin-top: 20px; } .content .cta button { background: #5bc0de; color: #fff; padding: 12px 24px; border: none; border-radius: 6px; font-size: 16px; cursor: pointer; transition: background 0.3s ease, transform 0.3s ease; } .content .cta button:hover { background: #31b0d5; transform: scale(1.05); } .footer { background: #282828; padding: 15px; text-align: center; border-top: 2px solid #555; } .footer p { margin: 0; font-size: 14px; color: #aaa; } </style> </head> <body> <div class="main-content"> <div class="header"> Urban Pulse 🏙️ </div> <div class="content"> <p>Experience the vibrant beat of Urban Pulse, where city lights and modern life converge. Embrace the energy and rhythm of urban living.</p> <div class="cta"> <button onclick="alert('Feel the Pulse!')">Feel Alive 🌆</button> </div> </div> <div class="footer"> <p>© 2024 Urban Pulse. All rights reserved.</p> </div> </div> </body> </html>