Xhaheen/Hyper_Bot_openai
15
1<!DOCTYPE html>2 3<html>4<head>5 <title>Example</title>6</head>7<body>8 <div style="text-align: center;">9 <iframe id="myIframe"10 frameborder="0"11 style="width: 100%; max-width: 850px; height: 2000px;"12 ></iframe>13 </div>14 <script>15 // Fetch the content of Read.txt from the Hugging Face repository16 fetch('Read.txt')17 .then(response => response.text())18 .then(data => {19 // Fetch the content of the linked file from GitHub repository20 return fetch(data.trim());21 })22 .then(response => response.text())23 .then(data => {24 const myIframe = document.getElementById('myIframe');25 myIframe.src = data.trim();26 })27 .catch(error => console.error(error));28 </script>29</body>30</html>31 