miguelgargallo commited on
Commit
a867794
1 Parent(s): 59ddf4f

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +46 -17
index.html CHANGED
@@ -1,19 +1,48 @@
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 Repository</title>
7
+ <style>
8
+ body {
9
+ font-family: Arial, sans-serif;
10
+ margin: 20px;
11
+ }
12
+ h1 {
13
+ color: #333;
14
+ }
15
+ p {
16
+ color: #666;
17
+ }
18
+ .container {
19
+ max-width: 600px;
20
+ margin: 0 auto;
21
+ }
22
+ </style>
23
+ </head>
24
+ <body>
25
+ <div class="container">
26
+ <h1>Welcome to the Hugging Face Repository</h1>
27
+ <p>
28
+ This repository contains various machine learning models and tools provided by Hugging Face.
29
+ Please note that the use of the code and models is subject to the license agreement.
30
+ </p>
31
+ <h2>Model Visualization and Education</h2>
32
+ <p>
33
+ You are granted access to visualize and use the models in this repository for educational and informative purposes only.
34
+ You can interact with the models to understand their capabilities and outputs.
35
+ </p>
36
+ <h2>Restrictions</h2>
37
+ <p>
38
+ This license restricts you from self-hosting the models or code provided in this repository.
39
+ You are also not allowed to use any part of the code, including copying or modifying it for your own purposes.
40
+ Please adhere to the terms and conditions mentioned in the license agreement.
41
+ </p>
42
+ <h2>Contact</h2>
43
+ <p>
44
+ For any inquiries or requests regarding additional permissions, please contact the licensor at <a href="mailto:contact@huggingface.com">contact@huggingface.com</a>.
45
+ </p>
46
+ </div>
47
+ </body>
48
  </html>