Spaces:
Running
Running
Update index.html
Browse files- index.html +26 -16
index.html
CHANGED
@@ -1,19 +1,29 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>
|