Beautiful Blockquote - VexaX
Run Code
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>Beautiful 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: #f4f4f9; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .blockquote-container { position: relative; width: 80%; max-width: 800px; background: #fff; padding: 3%; padding-left: 5%; border-radius: 15px; box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); overflow: hidden; animation: fadeIn 1s ease-in-out; } .blockquote-container:before, .blockquote-container:after { content: '“'; position: absolute; font-size: 6em; color: #f0f0f0; } .blockquote-container:before { top: -0.2em; left: -0.3em; } .blockquote-container:after { content: '”'; bottom: -0.2em; right: -0.3em; } blockquote { margin: 0; padding: 0; font-size: 1.25em; color: #333; position: relative; } blockquote::before { content: '\f10d'; font-family: 'Font Awesome 5 Free'; font-weight: 900; position: absolute; top: -10px; left: -40px; font-size: 2em; color: #ffbb00; animation: bounce 1s infinite; } blockquote p { display: inline; animation: textFadeIn 2s ease-in-out; } blockquote footer { margin-top: 1em; font-size: 0.9em; color: #777; display: flex; align-items: center; } blockquote footer img { width: 40px; height: 40px; border-radius: 50%; margin-right: 10px; border: 2px solid #ffbb00; } blockquote footer span { font-weight: bold; } @keyframes fadeIn { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } @keyframes textFadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } </style> </head> <body> <div class="blockquote-container"> <blockquote> <p>Success is not the key to happiness. Happiness is the key to success. If you love what you are doing, you will be successful.</p> <footer> <img src="https://via.placeholder.com/40" alt="Author Image"> <span>Albert Schweitzer</span> </footer> </blockquote> </div> </body> </html>