Update index.html
Browse files- index.html +89 -18
index.html
CHANGED
|
@@ -1,19 +1,90 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>
|