Professional Paragraph Design - 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>Professional Paragraph Design</title> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap'); @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css'); body { font-family: 'Poppins', sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f0f2f5; margin: 0; } .animated-paragraph { position: relative; max-width: 600px; padding: 20px; background: linear-gradient(145deg, #ffffff, #e6e6e6); border-radius: 20px; box-shadow: 10px 10px 20px #b3b3b3, -10px -10px 20px #ffffff; font-size: 1.2rem; color: #333; text-align: justify; line-height: 1.6; overflow: hidden; } .animated-paragraph:before { /* content: "\f10d"; */ font-family: 'Font Awesome 5 Free'; position: absolute; top: 10px; left: 10px; font-size: 2rem; color: #ff5f6d; animation: spin 3s linear infinite; } .animated-paragraph:after { content: "\f118"; font-family: 'Font Awesome 5 Free'; position: absolute; bottom: 10px; right: 10px; font-size: 2rem; color: #ffc371; animation: bounce 2s ease infinite; } .highlight { background-color: #ff5f6d; color: #fff; padding: 0 5px; border-radius: 5px; animation: pulse 1.5s infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } } </style> </head> <body> <div class="animated-paragraph"> <p>Experience the future of <span class="highlight">web design</span> with this highly attractive and professional paragraph. This design combines modern CSS techniques, animations, emojis, and icons to make your content stand out. Enhance your user's experience with a blend of aesthetic appeal and functionality. Embrace the power of <span class="highlight">creativity</span> and innovation in your web projects!</p> </div> </body> </html>