SaberDhib commited on
Commit
d2ce5fc
·
verified ·
1 Parent(s): b5726d7

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +89 -18
index.html CHANGED
@@ -1,19 +1,90 @@
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
+ <title>ESCP on Hugging Face – Guidelines</title>
6
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
7
+ <style>
8
+ body {
9
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
10
+ background: #fafafa;
11
+ color: #111;
12
+ margin: 0;
13
+ padding: 0;
14
+ }
15
+ .container {
16
+ max-width: 900px;
17
+ margin: 0 auto;
18
+ padding: 3rem 1.5rem;
19
+ text-align: center;
20
+ }
21
+ img {
22
+ max-width: 100%;
23
+ height: auto;
24
+ margin-bottom: 2rem;
25
+ }
26
+ h1 {
27
+ margin-bottom: 1rem;
28
+ }
29
+ p {
30
+ font-size: 1.05rem;
31
+ line-height: 1.6;
32
+ margin-bottom: 1.5rem;
33
+ }
34
+ .links a {
35
+ display: inline-block;
36
+ margin: 0.5rem;
37
+ padding: 0.75rem 1.25rem;
38
+ border-radius: 6px;
39
+ text-decoration: none;
40
+ font-weight: 600;
41
+ }
42
+ .primary {
43
+ background: #ff5f00;
44
+ color: #fff;
45
+ }
46
+ .secondary {
47
+ background: #e5e7eb;
48
+ color: #111;
49
+ }
50
+ </style>
51
+ </head>
52
+ <body>
53
+ <div class="container">
54
+
55
+ <!-- Image -->
56
+ <img src="./header.png" alt="ESCP on Hugging Face" />
57
+
58
+ <h1>ESCP on Hugging Face</h1>
59
+
60
+ <p>
61
+ This Space provides the official publishing and usage guidelines for ESCP
62
+ projects on Hugging Face.
63
+ </p>
64
+
65
+ <p>
66
+ Please consult the guidelines before publishing any model, dataset, or Space
67
+ under the ESCP organization.
68
+ </p>
69
+
70
+ <div class="links">
71
+ <a
72
+ class="primary"
73
+ href="./blob/main/README.md"
74
+ >
75
+ Read the guidelines
76
+ </a>
77
+
78
+ <a
79
+ class="secondary"
80
+ href="https://escp.eu/ai"
81
+ target="_blank"
82
+ rel="noopener noreferrer"
83
+ >
84
+ ESCP AI institutional page
85
+ </a>
86
+ </div>
87
+
88
+ </div>
89
+ </body>
90
  </html>