multix2 / index.html
Shufan Li
a
2bad4a4
raw
history blame contribute delete
889 Bytes
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>My static Space</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- <pre /> -->
<!-- <iframe src="https://0d46f909bdf7a829a4.gradio.live" height="1024px" width="100%"/> -->
</body>
<script>
function insertIframe(src) {
// Create the iframe element
const iframe = document.createElement('iframe');
// Set the iframe attributes
iframe.src = src;
iframe.height = '1024px';
iframe.width = '100%';
// Insert the iframe into the body or any other target container
document.body.appendChild(iframe);
}
insertIframe(window.huggingface.variables['DEMO_URL'])
// document.querySelector("pre").textContent =window.huggingface.variables['DEMO_URL']// JSON.stringify(window.huggingface, null, 2)
</script>
</html>