1234567891011121314151617181920212223242526272829303132333435 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- html,
- body,
- iframe,
- h2 {
- margin: 0;
- border: 0;
- padding: 0;
- display: block;
- height: 100%;
- width: 100%;
- background: white;
- color: black;
- }
- h2 {
- height: 50px;
- font-size: 20px;
- }
- </style>
- </head>
- <body>
- <iframe src="" width="100%" height="100%" ></iframe>
- <script src="js/iframe.js"></script>
- </body>
- </html>
|