| <!DOCTYPE html> |
| <html> |
| <head> |
| <title>Example</title> |
| </head> |
| <body> |
| <div style="text-align: center;"> |
| <iframe id="myIframe" |
| frameborder="0" |
| style="width: 100%; max-width: 850px; height: 2000px;" |
| ></iframe> |
| </div> |
| <script> |
| |
| fetch('Read.txt') |
| .then(response => response.text()) |
| .then(data => { |
| |
| return fetch(data.trim()); |
| }) |
| .then(response => response.text()) |
| .then(data => { |
| const myIframe = document.getElementById('myIframe'); |
| myIframe.src = data.trim(); |
| }) |
| .catch(error => console.error(error)); |
| </script> |
| </body> |
| </html> |
|
|