Rustic Charm 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>Rustic Charm 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: 'Georgia', serif; background-color: #f7f0e7; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .blockquote-container { position: relative; width: 65%; background: #fff5e1; padding: 3em; border: 2px solid #e7d3a9; border-radius: 5px; box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); } .blockquote-container:before { content: '\f10d'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 5em; position: absolute; top: -10px; left: -10px; color: #d4a374; opacity: 0.3; } blockquote { margin: 0; padding: 0; font-size: 1.2em; color: #4e342e; } blockquote footer { margin-top: 2em; font-size: 0.9em; color: #795548; text-align: right; font-style: italic; } </style> </head> <body> <div class="blockquote-container"> <blockquote> <p>The only way to do great work is to love what you do.</p> <footer>— Steve Jobs</footer> </blockquote> </div> </body> </html>