Retro Vibes Article - 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 Vibes Article</title> <style> @import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap'); @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css'); body { font-family: 'Pacifico', cursive; background: linear-gradient(135deg, #ffcc70, #f9a06d); margin: 0; padding: 0; color: #fff; } .article-container { max-width: 700px; margin: 50px auto; background: rgba(0, 0, 0, 0.6); border-radius: 10px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); overflow: hidden; position: relative; padding: 20px; } .article-header { text-align: center; } .article-header h1 { margin: 0; font-size: 2.5em; } .article-content { padding: 20px; line-height: 1.6; } .article-content h2 { margin-top: 1.5em; } .icon-bar { position: fixed; top: 50%; left: 0; transform: translateY(-50%); display: flex; flex-direction: column; gap: 10px; } .icon-bar a { display: block; background: #ff4081; padding: 10px; text-align: center; color: #fff; border-radius: 0 5px 5px 0; transition: background 0.3s; } .icon-bar a:hover { background: #f50057; } .highlight { background: #ffeb3b; padding: 3px 5px; border-radius: 3px; } .fade-in { animation: fadeIn 2s ease-in-out; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } </style> </head> <body> <div class="icon-bar"> <a href="#" title="Home"><i class="fas fa-home"></i></a> <a href="#" title="Search"><i class="fas fa-search"></i></a> <a href="#" title="Contact"><i class="fas fa-envelope"></i></a> <a href="#" title="Profile"><i class="fas fa-user"></i></a> </div> <div class="article-container"> <div class="article-header"> <h1>Retro Vibes Article</h1> </div> <div class="article-content"> <h2>Introduction</h2> <p class="fade-in">This article is infused with retro vibes, using bold colors and a playful font to transport readers back in time.</p> <h2>Why Style Matters</h2> <p class="fade-in">Retro styling can create a fun and engaging experience, making your content memorable and unique.</p> <h2>Conclusion</h2> <p class="fade-in">We hope you enjoy the Retro Vibes design. Let the nostalgia inspire your creativity in new and exciting ways.</p> </div> </div> <script> document.addEventListener("DOMContentLoaded", function () { const fadeIns = document.querySelectorAll(".fade-in"); fadeIns.forEach((element, index) => { element.style.animationDelay = `${index * 0.5}s`; }); }); </script> </body> </html>