Nature Bliss - 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>Nature Bliss</title> <style> @import url('https://fonts.googleapis.com/css2?family=Lora: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: 'Lora', serif; background: linear-gradient(135deg, #a8e063, #56ab2f); margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; overflow: hidden; } .main-content { background: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-radius: 16px; overflow: hidden; max-width: 800px; width: 100%; animation: fade-in 1s ease-out; } @keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } .header { background: linear-gradient(135deg, #56ab2f, #a8e063); color: #fff; padding: 20px; text-align: center; font-size: 24px; font-weight: 700; } .content { padding: 20px; } .content p { font-size: 16px; line-height: 1.5; color: #444; margin-bottom: 20px; } .content .cta { display: flex; justify-content: center; } .content .cta button { background: #56ab2f; color: #fff; padding: 10px 20px; border: none; border-radius: 8px; font-size: 16px; cursor: pointer; transition: background 0.3s ease, transform 0.3s ease; } .content .cta button:hover { background: #3e8e41; transform: scale(1.05); } .footer { background: #f9f9f9; padding: 15px; text-align: center; } .footer p { margin: 0; font-size: 14px; } </style> </head> <body> <div class="main-content"> <div class="header"> Nature Bliss 🌿 </div> <div class="content"> <p>Immerse yourself in the tranquility of Nature Bliss. This serene content area is designed to evoke the beauty of nature, providing a peaceful retreat for your mind and soul.</p> <div class="cta"> <button onclick="alert('Embrace Nature!')">Discover More 🌳</button> </div> </div> <div class="footer"> <p>© 2024 Nature Bliss</p> </div> </div> </body> </html>