<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Coming Soon - TAA Travels</title> <style> body { font-family: 'Arial', sans-serif; background-color: #f4f4f4; margin: 0; padding: 0; display: flex; align-items: center; justify-content: center; height: 100vh; } .container { text-align: center; max-width: 600px; padding: 20px; background-color: #fff; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); border-radius: 8px; } h1 { color: #333; } p { color: #555; } img { max-width: 100%; height: auto; border-radius: 8px; margin-top: 20px; } </style> </head> <body> <div class="container"> <h1>Coming Soon</h1> <p>Exciting travel stories, tips, and adventures await you!</p> <img src="placeholder-image.jpg" alt="Travel Blog Placeholder" width="400"> </div> </body> </html>