Alcime commited on
Commit
090da2d
1 Parent(s): c1ead9e

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +49 -19
index.html CHANGED
@@ -1,19 +1,49 @@
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 lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Hugging Face Network Graphs</title>
7
+ <style>
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ line-height: 1.6;
11
+ color: #333;
12
+ max-width: 800px;
13
+ margin: 0 auto;
14
+ padding: 20px;
15
+ }
16
+ h1 {
17
+ color: #4a4a4a;
18
+ }
19
+ .graph-link {
20
+ display: inline-block;
21
+ margin: 10px 0;
22
+ padding: 10px 15px;
23
+ background-color: #4a4a4a;
24
+ color: white;
25
+ text-decoration: none;
26
+ border-radius: 5px;
27
+ transition: background-color 0.3s ease;
28
+ }
29
+ .graph-link:hover {
30
+ background-color: #666;
31
+ }
32
+ </style>
33
+ </head>
34
+ <body>
35
+ <h1>Hugging Face Network Graphs</h1>
36
+ <p>Welcome to the Hugging Face Network Graphs visualization page. Here you can explore two different network graphs representing relationships within the Hugging Face community.</p>
37
+
38
+ <h2>Available Graphs:</h2>
39
+ <a href="co_organization.html" class="graph-link">Hugging Face Organizations Network</a>
40
+ <p>This graph represents the network of Hugging Face organizations and their relationships.</p>
41
+
42
+ <a href="co_user.html" class="graph-link">Hugging Face Users Network</a>
43
+ <p>This graph shows the network of Hugging Face users and their interactions.</p>
44
+
45
+ <footer>
46
+ <p>Created using data from Hugging Face. For more information, visit <a href="https://huggingface.co">huggingface.co</a>.</p>
47
+ </footer>
48
+ </body>
49
+ </html>