iframe.html 676 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Simple HTML Example</title>
  7. <style>
  8. body {
  9. font-family: sans-serif; /* Use a sans-serif font */
  10. margin: 20px; /* Add some margin around the content */
  11. background-color: #f0f0f0; /* Light gray background */
  12. }
  13. h1 {
  14. color: #333; /* Dark gray heading color */
  15. }
  16. p {
  17. line-height: 1.6; /* Improve readability */
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <h1>Welcome CHILD PAGE WHERE I NEED DEBUG LOGS</h1>
  23. </body>
  24. </html>