CobaltZvc commited on
Commit
f4efbda
·
1 Parent(s): b7e5747

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +26 -16
index.html CHANGED
@@ -1,19 +1,29 @@
1
  <!DOCTYPE html>
2
  <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
  <!DOCTYPE html>
2
  <html>
3
+ <head>
4
+ <title>Example</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 repository
15
+ fetch('Read.txt')
16
+ .then(response => response.text())
17
+ .then(data => {
18
+ // Fetch the content of the linked file from GitHub repository
19
+ 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>