CobaltZvc commited on
Commit
d5030e8
·
1 Parent(s): 44ab10b

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +22 -7
index.html CHANGED
@@ -1,8 +1,23 @@
1
  <!DOCTYPE html>
2
- <div style="text-align: center;">
3
- <iframe
4
- src="https://cobaltzvc-hyperbot.hf.space"
5
- frameborder="0"
6
- style="width: 100%; max-width: 850px; height: 2000px;"
7
- ></iframe>
8
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Hyper_Bot</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('Read.txt')
15
+ .then(response => response.text())
16
+ .then(data => {
17
+ const myIframe = document.getElementById('myIframe');
18
+ myIframe.src = data.trim();
19
+ })
20
+ .catch(error => console.error(error));
21
+ </script>
22
+ </body>
23
+ </html>