Retro 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>Retro Paragraph</title> <style> @import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap'); @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css'); body { font-family: 'Press Start 2P', cursive; display: flex; justify-content: center; align-items: center; height: 100vh; background: #d4d4aa; color: #333; margin: 0; } .retro-paragraph-container { background: linear-gradient(135deg, #ffcc00 0%, #ff3300 100%); padding: 20px 30px; border-radius: 15px; box-shadow: 0 10px 20px rgba(0,0,0,0.3); overflow: hidden; transition: transform 0.5s ease; cursor: pointer; text-align: center; } .retro-paragraph-container:hover { transform: scale(1.05); } .retro-paragraph { font-size: 1.2em; font-weight: 400; position: relative; line-height: 1.5; } .retro-paragraph strong { font-weight: 700; color: #ff0066; } .retro-paragraph .icon { color: #ff6600; margin: 0 5px; animation: bounce 1.5s infinite alternate; } .retro-paragraph::before, .retro-paragraph::after { content: ''; position: absolute; width: 200%; height: 200%; top: -50%; left: -50%; background: linear-gradient(135deg, rgba(255,255,255,0.3) 25%, transparent 25%), linear-gradient(225deg, rgba(255,255,255,0.3) 25%, transparent 25%), linear-gradient(45deg, rgba(255,255,255,0.3) 25%, transparent 25%), linear-gradient(315deg, rgba(255,255,255,0.3) 25%, transparent 25%); background-size: 50px 50px; animation: rotate 6s linear infinite; } .retro-paragraph::after { filter: blur(10px); } @keyframes bounce { from { transform: translateY(0); } to { transform: translateY(-10px); } } @keyframes rotate { from { transform: rotate(0); } to { transform: rotate(360deg); } } </style> </head> <body> <div class="retro-paragraph-container"> <div class="retro-paragraph"> <strong>🎮 Retro Vibes 🎮</strong><br> Step back in time with this retro-styled paragraph, combining pixelated fonts and vibrant colors to create a nostalgic experience. Your content will pop with <i class="fas fa-star icon"></i> charm and <i class="fas fa-heart icon"></i> warmth. </div> </div> </body> </html>