| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Simple HTML Page</title> | |
| <style> | |
| body { | |
| font-family: Arial, sans-serif; | |
| text-align: center; | |
| margin-top: 50px; | |
| } | |
| h1 { | |
| color: #4CAF50; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <h1>Welcome to My Simple HTML Page</h1> | |
| <p>This is a basic, responsive HTML page created using an AI agent.</p> | |
| </body> | |
| </html> |