Enchanted Forest - 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>Enchanted Forest</title> <style> @import url('https://fonts.googleapis.com/css2?family=Cinzel: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: 'Cinzel', serif; background: #2c3e50; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; overflow: hidden; } .main-content { background: #3498db; color: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.2); border-radius: 12px; overflow: hidden; max-width: 800px; width: 100%; animation: fade-in 1s ease-out; } @keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } .header { background: #2980b9; color: #fff; padding: 20px; text-align: center; font-size: 24px; font-weight: 700; } .content { padding: 20px; } .content p { font-size: 16px; line-height: 1.6; color: #333; margin-bottom: 20px; } .content .cta { display: flex; justify-content: center; margin-top: 20px; } .content .cta button { background: #27ae60; color: #fff; padding: 12px 24px; border: none; border-radius: 6px; font-size: 16px; cursor: pointer; transition: background 0.3s ease, transform 0.3s ease; } .content .cta button:hover { background: #219a52; transform: scale(1.05); } .footer { background: #2980b9; padding: 15px; text-align: center; } .footer p { margin: 0; font-size: 14px; color: #fff; } </style> </head> <body> <div class="main-content"> <div class="header"> Enchanted Forest 🌲 </div> <div class="content"> <p>Discover the mysteries of the Enchanted Forest, where ancient trees whisper secrets and magic fills the air. Experience nature's enchantment.</p> <div class="cta"> <button onclick="alert('Enter the Forest!')">Explore Magic 🌟</button> </div> </div> <div class="footer"> <p>© 2024 Enchanted Forest. All rights reserved.</p> </div> </div> </body> </html>