davanstrien HF staff commited on
Commit
2826842
1 Parent(s): 88dc7bb
Files changed (1) hide show
  1. index.html +21 -25
index.html CHANGED
@@ -1,28 +1,24 @@
1
  <!DOCTYPE html>
2
  <html>
3
- <style>
4
- html {
5
- border: 1px solid black;
6
- }
7
- </style>
8
- <body>
9
- <div class="card">
10
- <h1 class="center" style="text-align: center">
11
- &#x1F917; Hub analysis notebooks &#x1F917;
12
- </h1>
13
- <p class="center">
14
- This Space is used to collect notebooks which assess metadata on the
15
- Hugging Face Hub in various ways.
16
- </p>
17
- <h2>Current notebooks</h2>
18
- <ul>
19
- <li>
20
- <a
21
- href="https://huggingface.co/spaces/librarian-bots/hub-metadata-analysis/blob/main/dataset_language_detection.ipynb"
22
- >Dataset Language Analysis</a
23
- >
24
- </li>
25
- </ul>
26
- </div>
27
- </body>i
28
  </html>
 
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
+ <style>
9
+ .center {
10
+ text-align: center;
11
+ }
12
+ </style>
13
+ </head>
14
+ <body>
15
+ <div class="card">
16
+ <h1 class="center"> &#x1F917; Hub analysis notebooks &#x1F917;</h1>
17
+ <p class="center">This Space is used to collect notebooks which analyse metadata on the Hugging Face Hub in various ways.</p>
18
+ <h2>Current notebooks</h2>
19
+ <ul>
20
+ <li><a href="https://huggingface.co/spaces/librarian-bots/hub-metadata-analysis/blob/main/dataset_language_detection.ipynb">Dataset Language Analysis</a></li>
21
+ </ul>
22
+ </div>
23
+ </body>
 
 
 
 
24
  </html>