Eduardo García commited on
Commit
8899e17
1 Parent(s): 25bc232

Create index.html

Browse files
Files changed (1) hide show
  1. index.html +37 -0
index.html ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Bittensor Metagraph Dashboard</title>
5
+ <style type="text/css">
6
+ html {
7
+ overflow: auto;
8
+ }
9
+ html,
10
+ body,
11
+ div,
12
+ iframe {
13
+ margin: 0px;
14
+ padding: 0px;
15
+ height: 100%;
16
+ border: none;
17
+ }
18
+ iframe {
19
+ display: block;
20
+ width: 100%;
21
+ border: none;
22
+ overflow-y: auto;
23
+ overflow-x: hidden;
24
+ }
25
+ </style>
26
+ </head>
27
+ <body>
28
+ <iframe src="https://opentensor-dashboards-metadash-457hsp.streamlit.app/"
29
+ frameborder="0"
30
+ marginheight="0"
31
+ marginwidth="0"
32
+ width="100%"
33
+ height="100%"
34
+ scrolling="auto">
35
+ </iframe>
36
+ </body>
37
+ </html>