| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="utf-8" /> |
| <title>ESCP on Hugging Face – Guidelines</title> |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| <style> |
| body { |
| font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif; |
| background: #fafafa; |
| color: #111; |
| margin: 0; |
| padding: 0; |
| } |
| .container { |
| max-width: 900px; |
| margin: 0 auto; |
| padding: 3rem 1.5rem; |
| text-align: center; |
| } |
| img { |
| max-width: 100%; |
| height: auto; |
| margin-bottom: 2rem; |
| } |
| h1 { |
| margin-bottom: 1rem; |
| } |
| p { |
| font-size: 1.05rem; |
| line-height: 1.6; |
| margin-bottom: 1.5rem; |
| } |
| .links a { |
| display: inline-block; |
| margin: 0.5rem; |
| padding: 0.75rem 1.25rem; |
| border-radius: 6px; |
| text-decoration: none; |
| font-weight: 600; |
| } |
| .primary { |
| background: #ff5f00; |
| color: #fff; |
| } |
| .secondary { |
| background: #e5e7eb; |
| color: #111; |
| } |
| </style> |
| </head> |
| <body> |
| <div class="container"> |
|
|
| |
| <img src="./header.png" alt="ESCP on Hugging Face" /> |
|
|
| <h1>ESCP on Hugging Face</h1> |
|
|
| <p> |
| This Space provides the official publishing and usage guidelines for ESCP |
| projects on Hugging Face. |
| </p> |
|
|
| <p> |
| Please consult these guidelines before publishing any model, dataset, or Space |
| under the ESCP organization. |
| </p> |
|
|
| <div class="links"> |
| <a |
| class="primary" |
| href="https://huggingface.co/spaces/ESCP/escp-huggingface-guidelines/blob/main/README.md" |
| target="_blank" |
| rel="noopener noreferrer" |
| > |
| Read the guidelines |
| </a> |
|
|
| <a |
| class="secondary" |
| href="https://escp.eu/ai" |
| target="_blank" |
| rel="noopener noreferrer" |
| > |
| ESCP AI institutional page |
| </a> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |
|
|