12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Simple HTML Example</title>
- <style>
- body {
- font-family: sans-serif; /* Use a sans-serif font */
- margin: 20px; /* Add some margin around the content */
- background-color: #f0f0f0; /* Light gray background */
- }
- h1 {
- color: #333; /* Dark gray heading color */
- }
- p {
- line-height: 1.6; /* Improve readability */
- }
- </style>
- </head>
- <body>
- <h1>Welcome CHILD PAGE WHERE I NEED DEBUG LOGS</h1>
- </body>
- </html>
|