iframe.html 743 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. html,
  10. body,
  11. iframe,
  12. h2 {
  13. margin: 0;
  14. border: 0;
  15. padding: 0;
  16. display: block;
  17. height: 100%;
  18. width: 100%;
  19. background: white;
  20. color: black;
  21. }
  22. h2 {
  23. height: 50px;
  24. font-size: 20px;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <iframe src="" width="100%" height="100%" ></iframe>
  30. <script src="js/iframe.js"></script>
  31. </body>
  32. </html>