| | <!DOCTYPE html> |
| | <html lang="en"> |
| | <head> |
| | <meta charset="UTF-8"> |
| | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| | <title>Welcome</title> |
| | <style> |
| | body { |
| | font-family: Arial, sans-serif; |
| | background-color: #f0f8ff; |
| | color: #333; |
| | margin: 0; |
| | padding: 0; |
| | display: flex; |
| | justify-content: center; |
| | align-items: center; |
| | height: 100vh; |
| | } |
| | |
| | .welcome-container { |
| | text-align: center; |
| | background-color: #ffffff; |
| | padding: 20px; |
| | border-radius: 10px; |
| | box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); |
| | } |
| | |
| | h1 { |
| | color: #008080; |
| | font-size: 36px; |
| | } |
| | |
| | p { |
| | font-size: 18px; |
| | color: #555555; |
| | } |
| | </style> |
| | </head> |
| | <body> |
| | <div class="welcome-container"> |
| | <h1>Welcome to Our Website!</h1> |
| | <p>We're glad to have you here. Explore and enjoy your stay!</p> |
| | </div> |
| | </body> |
| | </html> |
| |
|