Update index.html
Browse files- index.html +52 -17
index.html
CHANGED
@@ -1,19 +1,54 @@
|
|
1 |
<!doctype html>
|
2 |
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<!doctype html>
|
2 |
<html>
|
3 |
+
<head>
|
4 |
+
<meta charset="utf-8" />
|
5 |
+
<meta name="viewport" content="width=device-width" />
|
6 |
+
<title>Embedded iframes Demo</title>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: system-ui, -apple-system, sans-serif;
|
10 |
+
max-width: 1200px;
|
11 |
+
margin: 0 auto;
|
12 |
+
padding: 20px;
|
13 |
+
background-color: #f5f5f5;
|
14 |
+
}
|
15 |
+
.container {
|
16 |
+
display: flex;
|
17 |
+
flex-direction: column;
|
18 |
+
gap: 20px;
|
19 |
+
}
|
20 |
+
.iframe-wrapper {
|
21 |
+
background: white;
|
22 |
+
padding: 20px;
|
23 |
+
border-radius: 8px;
|
24 |
+
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
25 |
+
}
|
26 |
+
h1 {
|
27 |
+
color: #333;
|
28 |
+
text-align: center;
|
29 |
+
margin-bottom: 30px;
|
30 |
+
}
|
31 |
+
</style>
|
32 |
+
</head>
|
33 |
+
<body>
|
34 |
+
<h1>Embedded Datasets</h1>
|
35 |
+
<div class="container">
|
36 |
+
<div class="iframe-wrapper">
|
37 |
+
<iframe
|
38 |
+
src="https://huggingface.co/datasets/davanstrien/progress/embed/sql-console/NbscKj4"
|
39 |
+
frameborder="0"
|
40 |
+
width="100%"
|
41 |
+
height="560px">
|
42 |
+
</iframe>
|
43 |
+
</div>
|
44 |
+
<div class="iframe-wrapper">
|
45 |
+
<iframe
|
46 |
+
src="https://huggingface.co/datasets/davanstrien/progress/embed/sql-console/5Bhx9Ck"
|
47 |
+
frameborder="0"
|
48 |
+
width="100%"
|
49 |
+
height="560px">
|
50 |
+
</iframe>
|
51 |
+
</div>
|
52 |
+
</div>
|
53 |
+
</body>
|
54 |
+
</html>
|