broadfield-dev commited on
Commit
8dbee78
·
verified ·
1 Parent(s): 1b8f39b

Create grokipedia.html

Browse files
Files changed (1) hide show
  1. grokipedia.html +44 -0
grokipedia.html ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width" />
6
+ <meta name="twitter:card" content="player"/>
7
+ <meta name="twitter:site" content=""/>
8
+ <meta name="twitter:player" content="https://space-share-a.static.hf.space/grokipedia.html"/>
9
+ <meta name="twitter:player:stream" content="https://space-share-a.static.hf.space/grokipedia.html"/>
10
+ <meta name="twitter:player:width" content="100%"/>
11
+ <meta name="twitter:player:height" content="100%"/>
12
+ <meta property="og:title" content="Grokipedia"/>
13
+ <meta property="og:description" content="Interactive X Web App"/>
14
+ <meta property="og:image" content="https://huggingface.co/spaces/Space-Share/iLearn/resolve/main/card_im_crop.png"/>
15
+
16
+ <style>
17
+ .container {
18
+ position: relative;
19
+ overflow: hidden;
20
+ width: 100%;
21
+ padding-top: 100%;
22
+ }
23
+ .responsive-iframe {
24
+ position: absolute;
25
+ top: 0;
26
+ left: 0;
27
+ bottom: 0;
28
+ right: 0;
29
+ width: 100%;
30
+ height: 100%;
31
+ }
32
+ </style>
33
+ </head>
34
+ <body>
35
+ <div class="container">
36
+ <iframe
37
+ class="responsive-iframe"
38
+ src="https://www.grokipedia.com"
39
+ frameborder="0"
40
+ ></iframe>
41
+ </div>
42
+
43
+ </body>
44
+ </html>