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