Modern Paragraph - 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>Modern Paragraph</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background: #f0f2f5; margin: 0; font-family: 'Roboto', sans-serif; } .modern-paragraph { max-width: 600px; padding: 25px; background: #fff; border-radius: 15px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); text-align: center; border-left: 10px solid #007bff; animation: popUp 1s ease-out; } .modern-paragraph h1 { font-size: 24px; color: #007bff; margin-bottom: 10px; } .modern-paragraph p { font-size: 16px; color: #333; line-height: 1.7; } @keyframes popUp { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } } </style> </head> <body> <div class="modern-paragraph"> <h1>Modern Solutions <span>🚀</span></h1> <p>Embrace the future with our <span>🔧</span> cutting-edge technologies. We provide innovative and <span>📈</span> efficient solutions that drive your success in the modern era.</p> </div> </body> </html>