File size: 2,052 Bytes
d2ce5fc 79b93bf d2ce5fc 79b93bf d2ce5fc 79b93bf d2ce5fc 79b93bf d2ce5fc 79b93bf d2ce5fc 79b93bf d2ce5fc 79b93bf d2ce5fc 79b93bf eb27b28 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | <!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">
<!-- Image -->
<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>
|