davanstrien HF staff commited on
Commit
4e9f3ae
·
verified ·
1 Parent(s): 85d7e36

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +52 -17
index.html CHANGED
@@ -1,19 +1,54 @@
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
+ <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>