Neon Wave Blockquote - 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>Neon Wave Blockquote</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"> <style> body { font-family: 'Arial', sans-serif; background-color: #121212; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .blockquote-container { position: relative; width: 70%; background: #1e1e1e; padding: 2em 2.5em; border-radius: 20px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); border: 2px solid #00e5ff; } .blockquote-container:before { content: '\f10d'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 4em; position: absolute; top: -10px; left: -10px; color: #00e5ff; opacity: 0.6; animation: pulse 1.5s infinite; } blockquote { margin: 0; padding: 0; font-size: 1.6em; color: #fff; } blockquote footer { margin-top: 1.5em; font-size: 0.9em; color: #b0bec5; text-align: right; } @keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.1); opacity: 1; } } </style> </head> <body> <div class="blockquote-container"> <blockquote> <p>Your time is limited, don't waste it living someone else's life.</p> <footer>— Steve Jobs</footer> </blockquote> </div> </body> </html>