Spaces:
Running
Running
Upload back_gab.html with huggingface_hub
Browse files- back_gab.html +33 -0
back_gab.html
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
|
| 5 |
+
<style>
|
| 6 |
+
.container {
|
| 7 |
+
position: relative;
|
| 8 |
+
overflow: hidden;
|
| 9 |
+
width: 100%;
|
| 10 |
+
padding-top: 56%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
|
| 11 |
+
}
|
| 12 |
+
.responsive-iframe {
|
| 13 |
+
position: absolute;
|
| 14 |
+
top: 0;
|
| 15 |
+
left: 0;
|
| 16 |
+
bottom: 0;
|
| 17 |
+
right: 0;
|
| 18 |
+
width: 100%;
|
| 19 |
+
height: 100%;
|
| 20 |
+
}
|
| 21 |
+
</style>
|
| 22 |
+
</head>
|
| 23 |
+
<body>
|
| 24 |
+
<div class="container">
|
| 25 |
+
<iframe
|
| 26 |
+
class="responsive-iframe"
|
| 27 |
+
src="https://weizmannscience-multidiffusion.hf.space"
|
| 28 |
+
frameborder="0"
|
| 29 |
+
></iframe>
|
| 30 |
+
</div>
|
| 31 |
+
|
| 32 |
+
</body>
|
| 33 |
+
</html>
|