Travel Adventure - 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>Travel Adventure</title> <style> @import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap'); body, html { margin: 0; padding: 0; height: 100%; overflow: hidden; font-family: 'Lobster', cursive; background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); display: flex; justify-content: center; align-items: center; } .ad-container { width: 360px; height: 470px; background: #ffffff; border-radius: 25px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); overflow: hidden; position: relative; } .ad-header { background: #ff6b6b; color: #fff; padding: 20px; text-align: center; font-size: 24px; } .ad-content { padding: 20px; text-align: center; } .ad-content h2 { font-size: 22px; margin: 20px 0; color: #ff6b6b; } .ad-content p { font-size: 16px; color: #606060; } .ad-footer { position: absolute; bottom: 0; width: 100%; padding: 20px; text-align: center; background: #f5f5f5; } .ad-footer button { background: #ff6b6b; border: none; padding: 15px 35px; color: #fff; font-size: 16px; border-radius: 35px; cursor: pointer; transition: background 0.3s; } .ad-footer button:hover { background: #ff4b4b; } .icon { font-size: 50px; color: #ffffff; animation: float 3s infinite ease-in-out; } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } .emoji { font-size: 24px; margin-top: 10px; } </style> </head> <body> <div class="ad-container"> <div class="ad-header"> <div class="icon">🌍</div> Travel Adventure </div> <div class="ad-content"> <h2>Explore the World</h2> <p>Join our adventure trips and explore the most beautiful places around the world. Limited spots available!</p> <div class="emoji">✈️ 🌎 🏖️</div> </div> <div class="ad-footer"> <button>Book Now</button> </div> </div> <script> document.querySelector('.ad-footer button').addEventListener('click', function() { alert('Get ready for your adventure!'); }); </script> </body> </html>