Unique Styled 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>Unique Styled Paragraph</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background: linear-gradient(135deg, #f5f7fa, #c3cfe2); margin: 0; font-family: 'Arial', sans-serif; } .styled-paragraph { position: relative; max-width: 600px; padding: 20px 30px; background: #fff; border-radius: 15px; box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); text-align: center; animation: slideIn 1s ease-out, glow 2s infinite alternate; } .styled-paragraph::before, .styled-paragraph::after { content: ""; position: absolute; top: 10px; bottom: 10px; left: 10px; right: 10px; border-radius: 15px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0.05)); z-index: -1; filter: blur(20px); } .styled-paragraph::after { filter: blur(40px); } .styled-paragraph h1 { font-size: 24px; color: #333; margin: 0 0 10px; } .styled-paragraph p { font-size: 18px; color: #666; line-height: 1.6; margin: 0; } .styled-paragraph p span { font-size: 22px; vertical-align: middle; } @keyframes slideIn { from { transform: translateY(-20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } @keyframes glow { from { box-shadow: 0 0 20px rgba(0, 123, 255, 0.5); } to { box-shadow: 0 0 40px rgba(0, 123, 255, 1); } } </style> </head> <body> <div class="styled-paragraph"> <h1>Welcome to Our Platform <span>🎉</span></h1> <p>Our mission is to bring you the best experience with <span>✨</span> innovative solutions, <span>📈</span> professional services, and <span>💼</span> outstanding support. Stay tuned for more updates <span>🔔</span>!</p> </div> </body> </html>