parvalijaved commited on
Commit
67dc292
·
verified ·
1 Parent(s): 254e517

Rename index.html to iknowaplace.html

Browse files
Files changed (2) hide show
  1. iknowaplace.html +39 -0
  2. index.html +0 -19
iknowaplace.html ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>Wrapper</title>
8
+ <style>
9
+ body,
10
+ html {
11
+ margin: 0;
12
+ padding: 0;
13
+ height: 100%;
14
+ overflow: hidden;
15
+ }
16
+
17
+ .fullscreen-iframe {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 100%;
22
+ height: 100%;
23
+ }
24
+
25
+ iframe {
26
+ width: 100%;
27
+ height: 100%;
28
+ }
29
+ </style>
30
+ </head>
31
+
32
+ <body>
33
+ <div class="fullscreen-iframe">
34
+ <iframe src="https://app.cu.bzh/" frameborder="0" allowfullscreen crossorigin allow="cross-origin-isolated">
35
+ </iframe>
36
+ </div>
37
+ </body>
38
+
39
+ </html>
index.html DELETED
@@ -1,19 +0,0 @@
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>