Retro Pop - 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>Retro Pop</title> <style> @import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap'); @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css'); body { font-family: 'Permanent Marker', cursive; background: #f0e68c; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .retro-pop { background: #ffffff; border-radius: 15px; padding: 20px; width: 80%; max-width: 1000px; text-align: center; color: #ff6347; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); border: 5px dashed #ff6347; animation: popIn 1s ease-out; } .retro-pop h1 { font-size: 2.5em; margin: 0.5em 0; position: relative; animation: bounceIn 2s infinite; } .retro-pop h1::before { content: '💥'; position: absolute; left: -30px; top: -10px; animation: rotateStar 1.5s infinite; } .retro-pop p { font-size: 1.2em; line-height: 1.5em; margin: 20px 0; } .icon-bar { margin: 20px 0; display: flex; justify-content: center; gap: 20px; } .icon-bar a { color: #ff6347; font-size: 2em; transition: transform 0.3s, color 0.3s; } .icon-bar a:hover { transform: scale(1.2); color: #000000; } .emoji { font-size: 3em; animation: popEmoji 2s infinite; } @keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } } @keyframes bounceIn { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-20px); } 60% { transform: translateY(-10px); } } @keyframes rotateStar { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @keyframes popEmoji { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } } </style> </head> <body> <div class="retro-pop"> <h1>Pop Art Fun 🎨</h1> <p>Step into the vibrant world of retro pop art. This section captures the playful spirit of vintage design.</p> <div class="icon-bar"> <a href="#" class="fab fa-facebook-f"></a> <a href="#" class="fab fa-twitter"></a> <a href="#" class="fab fa-linkedin-in"></a> <a href="#" class="fab fa-github"></a> </div> <p class="emoji">🎉</p> </div> </body> </html>