Janngu commited on
Commit
35d95ef
·
verified ·
1 Parent(s): 3949067

J'aimerais créer une page de grammaire. Avec beaucoup de leçons: Sifaa jeyirɗo (Pulaar) Adjectif possessif (Français) Possessive pronoun (English) Am: Mon, ma, mes : my Yeru: Baaba am, neena am, paɗe am. Exemple: Mon père, ma mère, mes chaussures Example : My father, my mother, my shoes. Maa: Ton, ta, tes : Your Yeru: koyngal maa, hoore maa, rewbe maa Exemple : ton pied, ta tête, tes femmes Example : Your foot, your head, your wives Makko: son, sa, ses : his, her, its Yeru: Gorko makko, Debbo makko, ɓiɓɓe makko Exemple: Son mari, sa femme, ses enfants Example : Her husband, his wife, his children Amen: Notre, nos: our (Exclusive) Yeru: Galle amen, galleeji amen Exemple : Notre maison, nos maisons Example : Our house, our houses Men: Notre, nos, our (inclusive) Yeru: Nagge men, na'i men Exemple : Notre vache, nos vaches Example: our cow, our cows Mon: Votre, vos: your Yeru: Kaaw mon, gorgiraaɗo mon, kaawiraaɓe mon Exemple: Votre oncle, votre tante, vos oncles Maɓɓe: Leur, leurs: their Yeru: baaba maɓɓe, gorgiraaɓe maɓɓe Exemple: leur père, leurs tantes - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +404 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Grammaire
3
- emoji: 📉
4
- colorFrom: purple
5
- colorTo: gray
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: grammaire
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: purple
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,404 @@
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="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Grammaire Pulaar-Français-Anglais</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .lesson-card {
11
+ transition: all 0.3s ease;
12
+ }
13
+ .lesson-card:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
16
+ }
17
+ .active-tab {
18
+ border-bottom: 3px solid #3b82f6;
19
+ color: #3b82f6;
20
+ font-weight: 600;
21
+ }
22
+ .language-tab {
23
+ cursor: pointer;
24
+ transition: all 0.2s ease;
25
+ }
26
+ .language-tab:hover {
27
+ color: #3b82f6;
28
+ }
29
+ </style>
30
+ </head>
31
+ <body class="bg-gray-50 min-h-screen">
32
+ <div class="container mx-auto px-4 py-8">
33
+ <!-- Header -->
34
+ <header class="text-center mb-12">
35
+ <h1 class="text-4xl font-bold text-blue-700 mb-2">Grammaire Pulaar</h1>
36
+ <p class="text-xl text-gray-600">Adjectifs possessifs - Pulaar/Français/Anglais</p>
37
+ <div class="flex justify-center mt-6 space-x-4">
38
+ <div class="bg-blue-100 text-blue-800 px-4 py-2 rounded-full flex items-center">
39
+ <i class="fas fa-language mr-2"></i>
40
+ <span>Pulaar</span>
41
+ </div>
42
+ <div class="bg-red-100 text-red-800 px-4 py-2 rounded-full flex items-center">
43
+ <i class="fas fa-language mr-2"></i>
44
+ <span>Français</span>
45
+ </div>
46
+ <div class="bg-purple-100 text-purple-800 px-4 py-2 rounded-full flex items-center">
47
+ <i class="fas fa-language mr-2"></i>
48
+ <span>English</span>
49
+ </div>
50
+ </div>
51
+ </header>
52
+
53
+ <!-- Language Tabs -->
54
+ <div class="flex border-b border-gray-200 mb-8">
55
+ <div class="language-tab active-tab px-4 py-2" onclick="showLanguage('all')">
56
+ <i class="fas fa-globe mr-2"></i>Tout
57
+ </div>
58
+ <div class="language-tab px-4 py-2" onclick="showLanguage('pulaar')">
59
+ <i class="fas fa-flag mr-2"></i>Pulaar
60
+ </div>
61
+ <div class="language-tab px-4 py-2" onclick="showLanguage('french')">
62
+ <i class="fas fa-flag mr-2"></i>Français
63
+ </div>
64
+ <div class="language-tab px-4 py-2" onclick="showLanguage('english')">
65
+ <i class="fas fa-flag mr-2"></i>English
66
+ </div>
67
+ </div>
68
+
69
+ <!-- Search -->
70
+ <div class="mb-8 relative">
71
+ <input type="text" placeholder="Rechercher une leçon..."
72
+ class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"
73
+ oninput="filterLessons(this.value)">
74
+ <i class="fas fa-search absolute right-4 top-4 text-gray-400"></i>
75
+ </div>
76
+
77
+ <!-- Lessons Grid -->
78
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6" id="lessons-container">
79
+ <!-- Lesson 1 -->
80
+ <div class="lesson-card bg-white rounded-xl shadow-md overflow-hidden border border-gray-100" data-lang="all pulaar french english">
81
+ <div class="p-6">
82
+ <div class="flex justify-between items-start">
83
+ <h3 class="text-xl font-bold text-gray-800 mb-2">Am</h3>
84
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded-full">Possessif</span>
85
+ </div>
86
+
87
+ <div class="mt-4">
88
+ <div class="flex items-center mb-2">
89
+ <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm mr-2">Pulaar</span>
90
+ <p class="text-gray-700">Baaba am, neena am, paɗe am</p>
91
+ </div>
92
+ <div class="flex items-center mb-2">
93
+ <span class="bg-red-100 text-red-800 px-2 py-1 rounded text-sm mr-2">Français</span>
94
+ <p class="text-gray-700">Mon, ma, mes</p>
95
+ </div>
96
+ <div class="flex items-center">
97
+ <span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-sm mr-2">English</span>
98
+ <p class="text-gray-700">My</p>
99
+ </div>
100
+ </div>
101
+
102
+ <div class="mt-4 pt-4 border-t border-gray-100">
103
+ <h4 class="font-semibold text-gray-700 mb-2">Exemples:</h4>
104
+ <ul class="text-sm text-gray-600 space-y-1">
105
+ <li class="flex items-start">
106
+ <span class="text-blue-500 mr-2">•</span>
107
+ <span>Mon père, ma mère, mes chaussures</span>
108
+ </li>
109
+ <li class="flex items-start">
110
+ <span class="text-blue-500 mr-2">•</span>
111
+ <span>My father, my mother, my shoes</span>
112
+ </li>
113
+ </ul>
114
+ </div>
115
+ </div>
116
+ </div>
117
+
118
+ <!-- Lesson 2 -->
119
+ <div class="lesson-card bg-white rounded-xl shadow-md overflow-hidden border border-gray-100" data-lang="all pulaar french english">
120
+ <div class="p-6">
121
+ <div class="flex justify-between items-start">
122
+ <h3 class="text-xl font-bold text-gray-800 mb-2">Maa</h3>
123
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded-full">Possessif</span>
124
+ </div>
125
+
126
+ <div class="mt-4">
127
+ <div class="flex items-center mb-2">
128
+ <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm mr-2">Pulaar</span>
129
+ <p class="text-gray-700">koyngal maa, hoore maa, rewbe maa</p>
130
+ </div>
131
+ <div class="flex items-center mb-2">
132
+ <span class="bg-red-100 text-red-800 px-2 py-1 rounded text-sm mr-2">Français</span>
133
+ <p class="text-gray-700">Ton, ta, tes</p>
134
+ </div>
135
+ <div class="flex items-center">
136
+ <span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-sm mr-2">English</span>
137
+ <p class="text-gray-700">Your</p>
138
+ </div>
139
+ </div>
140
+
141
+ <div class="mt-4 pt-4 border-t border-gray-100">
142
+ <h4 class="font-semibold text-gray-700 mb-2">Exemples:</h4>
143
+ <ul class="text-sm text-gray-600 space-y-1">
144
+ <li class="flex items-start">
145
+ <span class="text-blue-500 mr-2">•</span>
146
+ <span>Ton pied, ta tête, tes femmes</span>
147
+ </li>
148
+ <li class="flex items-start">
149
+ <span class="text-blue-500 mr-2">•</span>
150
+ <span>Your foot, your head, your wives</span>
151
+ </li>
152
+ </ul>
153
+ </div>
154
+ </div>
155
+ </div>
156
+
157
+ <!-- Lesson 3 -->
158
+ <div class="lesson-card bg-white rounded-xl shadow-md overflow-hidden border border-gray-100" data-lang="all pulaar french english">
159
+ <div class="p-6">
160
+ <div class="flex justify-between items-start">
161
+ <h3 class="text-xl font-bold text-gray-800 mb-2">Makko</h3>
162
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded-full">Possessif</span>
163
+ </div>
164
+
165
+ <div class="mt-4">
166
+ <div class="flex items-center mb-2">
167
+ <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm mr-2">Pulaar</span>
168
+ <p class="text-gray-700">Gorko makko, Debbo makko, ɓiɓɓe makko</p>
169
+ </div>
170
+ <div class="flex items-center mb-2">
171
+ <span class="bg-red-100 text-red-800 px-2 py-1 rounded text-sm mr-2">Français</span>
172
+ <p class="text-gray-700">Son, sa, ses</p>
173
+ </div>
174
+ <div class="flex items-center">
175
+ <span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-sm mr-2">English</span>
176
+ <p class="text-gray-700">His, her, its</p>
177
+ </div>
178
+ </div>
179
+
180
+ <div class="mt-4 pt-4 border-t border-gray-100">
181
+ <h4 class="font-semibold text-gray-700 mb-2">Exemples:</h4>
182
+ <ul class="text-sm text-gray-600 space-y-1">
183
+ <li class="flex items-start">
184
+ <span class="text-blue-500 mr-2">•</span>
185
+ <span>Son mari, sa femme, ses enfants</span>
186
+ </li>
187
+ <li class="flex items-start">
188
+ <span class="text-blue-500 mr-2">•</span>
189
+ <span>Her husband, his wife, his children</span>
190
+ </li>
191
+ </ul>
192
+ </div>
193
+ </div>
194
+ </div>
195
+
196
+ <!-- Lesson 4 -->
197
+ <div class="lesson-card bg-white rounded-xl shadow-md overflow-hidden border border-gray-100" data-lang="all pulaar french english">
198
+ <div class="p-6">
199
+ <div class="flex justify-between items-start">
200
+ <h3 class="text-xl font-bold text-gray-800 mb-2">Amen</h3>
201
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded-full">Possessif</span>
202
+ </div>
203
+
204
+ <div class="mt-4">
205
+ <div class="flex items-center mb-2">
206
+ <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm mr-2">Pulaar</span>
207
+ <p class="text-gray-700">Galle amen, galleeji amen</p>
208
+ </div>
209
+ <div class="flex items-center mb-2">
210
+ <span class="bg-red-100 text-red-800 px-2 py-1 rounded text-sm mr-2">Français</span>
211
+ <p class="text-gray-700">Notre, nos (Exclusif)</p>
212
+ </div>
213
+ <div class="flex items-center">
214
+ <span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-sm mr-2">English</span>
215
+ <p class="text-gray-700">Our (Exclusive)</p>
216
+ </div>
217
+ </div>
218
+
219
+ <div class="mt-4 pt-4 border-t border-gray-100">
220
+ <h4 class="font-semibold text-gray-700 mb-2">Exemples:</h4>
221
+ <ul class="text-sm text-gray-600 space-y-1">
222
+ <li class="flex items-start">
223
+ <span class="text-blue-500 mr-2">•</span>
224
+ <span>Notre maison, nos maisons</span>
225
+ </li>
226
+ <li class="flex items-start">
227
+ <span class="text-blue-500 mr-2">•</span>
228
+ <span>Our house, our houses</span>
229
+ </li>
230
+ </ul>
231
+ </div>
232
+ </div>
233
+ </div>
234
+
235
+ <!-- Lesson 5 -->
236
+ <div class="lesson-card bg-white rounded-xl shadow-md overflow-hidden border border-gray-100" data-lang="all pulaar french english">
237
+ <div class="p-6">
238
+ <div class="flex justify-between items-start">
239
+ <h3 class="text-xl font-bold text-gray-800 mb-2">Men</h3>
240
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded-full">Possessif</span>
241
+ </div>
242
+
243
+ <div class="mt-4">
244
+ <div class="flex items-center mb-2">
245
+ <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm mr-2">Pulaar</span>
246
+ <p class="text-gray-700">Nagge men, na'i men</p>
247
+ </div>
248
+ <div class="flex items-center mb-2">
249
+ <span class="bg-red-100 text-red-800 px-2 py-1 rounded text-sm mr-2">Français</span>
250
+ <p class="text-gray-700">Notre, nos (Inclusif)</p>
251
+ </div>
252
+ <div class="flex items-center">
253
+ <span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-sm mr-2">English</span>
254
+ <p class="text-gray-700">Our (Inclusive)</p>
255
+ </div>
256
+ </div>
257
+
258
+ <div class="mt-4 pt-4 border-t border-gray-100">
259
+ <h4 class="font-semibold text-gray-700 mb-2">Exemples:</h4>
260
+ <ul class="text-sm text-gray-600 space-y-1">
261
+ <li class="flex items-start">
262
+ <span class="text-blue-500 mr-2">•</span>
263
+ <span>Notre vache, nos vaches</span>
264
+ </li>
265
+ <li class="flex items-start">
266
+ <span class="text-blue-500 mr-2">•</span>
267
+ <span>Our cow, our cows</span>
268
+ </li>
269
+ </ul>
270
+ </div>
271
+ </div>
272
+ </div>
273
+
274
+ <!-- Lesson 6 -->
275
+ <div class="lesson-card bg-white rounded-xl shadow-md overflow-hidden border border-gray-100" data-lang="all pulaar french english">
276
+ <div class="p-6">
277
+ <div class="flex justify-between items-start">
278
+ <h3 class="text-xl font-bold text-gray-800 mb-2">Mon</h3>
279
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded-full">Possessif</span>
280
+ </div>
281
+
282
+ <div class="mt-4">
283
+ <div class="flex items-center mb-2">
284
+ <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm mr-2">Pulaar</span>
285
+ <p class="text-gray-700">Kaaw mon, gorgiraaɗo mon, kaawiraaɓe mon</p>
286
+ </div>
287
+ <div class="flex items-center mb-2">
288
+ <span class="bg-red-100 text-red-800 px-2 py-1 rounded text-sm mr-2">Français</span>
289
+ <p class="text-gray-700">Votre, vos</p>
290
+ </div>
291
+ <div class="flex items-center">
292
+ <span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-sm mr-2">English</span>
293
+ <p class="text-gray-700">Your</p>
294
+ </div>
295
+ </div>
296
+
297
+ <div class="mt-4 pt-4 border-t border-gray-100">
298
+ <h4 class="font-semibold text-gray-700 mb-2">Exemples:</h4>
299
+ <ul class="text-sm text-gray-600 space-y-1">
300
+ <li class="flex items-start">
301
+ <span class="text-blue-500 mr-2">•</span>
302
+ <span>Votre oncle, votre tante, vos oncles</span>
303
+ </li>
304
+ <li class="flex items-start">
305
+ <span class="text-blue-500 mr-2">•</span>
306
+ <span>Your uncle, your aunt, your uncles</span>
307
+ </li>
308
+ </ul>
309
+ </div>
310
+ </div>
311
+ </div>
312
+
313
+ <!-- Lesson 7 -->
314
+ <div class="lesson-card bg-white rounded-xl shadow-md overflow-hidden border border-gray-100" data-lang="all pulaar french english">
315
+ <div class="p-6">
316
+ <div class="flex justify-between items-start">
317
+ <h3 class="text-xl font-bold text-gray-800 mb-2">Maɓɓe</h3>
318
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded-full">Possessif</span>
319
+ </div>
320
+
321
+ <div class="mt-4">
322
+ <div class="flex items-center mb-2">
323
+ <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-sm mr-2">Pulaar</span>
324
+ <p class="text-gray-700">baaba maɓɓe, gorgiraaɓe maɓɓe</p>
325
+ </div>
326
+ <div class="flex items-center mb-2">
327
+ <span class="bg-red-100 text-red-800 px-2 py-1 rounded text-sm mr-2">Français</span>
328
+ <p class="text-gray-700">Leur, leurs</p>
329
+ </div>
330
+ <div class="flex items-center">
331
+ <span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-sm mr-2">English</span>
332
+ <p class="text-gray-700">Their</p>
333
+ </div>
334
+ </div>
335
+
336
+ <div class="mt-4 pt-4 border-t border-gray-100">
337
+ <h4 class="font-semibold text-gray-700 mb-2">Exemples:</h4>
338
+ <ul class="text-sm text-gray-600 space-y-1">
339
+ <li class="flex items-start">
340
+ <span class="text-blue-500 mr-2">•</span>
341
+ <span>Leur père, leurs tantes</span>
342
+ </li>
343
+ <li class="flex items-start">
344
+ <span class="text-blue-500 mr-2">•</span>
345
+ <span>Their father, their aunts</span>
346
+ </li>
347
+ </ul>
348
+ </div>
349
+ </div>
350
+ </div>
351
+ </div>
352
+
353
+ <!-- Footer -->
354
+ <footer class="mt-12 text-center text-gray-500 py-6 border-t border-gray-200">
355
+ <p>© 2023 Grammaire Pulaar - Tous droits réservés</p>
356
+ <div class="flex justify-center space-x-4 mt-2">
357
+ <a href="#" class="text-blue-500 hover:text-blue-700"><i class="fab fa-facebook"></i></a>
358
+ <a href="#" class="text-blue-400 hover:text-blue-600"><i class="fab fa-twitter"></i></a>
359
+ <a href="#" class="text-red-500 hover:text-red-700"><i class="fab fa-youtube"></i></a>
360
+ </div>
361
+ </footer>
362
+ </div>
363
+
364
+ <script>
365
+ // Function to filter lessons by language
366
+ function showLanguage(lang) {
367
+ // Update active tab
368
+ const tabs = document.querySelectorAll('.language-tab');
369
+ tabs.forEach(tab => tab.classList.remove('active-tab'));
370
+ event.currentTarget.classList.add('active-tab');
371
+
372
+ // Show/hide lessons
373
+ const lessons = document.querySelectorAll('.lesson-card');
374
+ lessons.forEach(lesson => {
375
+ if (lang === 'all' || lesson.getAttribute('data-lang').includes(lang)) {
376
+ lesson.style.display = 'block';
377
+ } else {
378
+ lesson.style.display = 'none';
379
+ }
380
+ });
381
+ }
382
+
383
+ // Function to search/filter lessons
384
+ function filterLessons(searchTerm) {
385
+ const lessons = document.querySelectorAll('.lesson-card');
386
+ searchTerm = searchTerm.toLowerCase();
387
+
388
+ lessons.forEach(lesson => {
389
+ const textContent = lesson.textContent.toLowerCase();
390
+ if (textContent.includes(searchTerm)) {
391
+ lesson.style.display = 'block';
392
+ } else {
393
+ lesson.style.display = 'none';
394
+ }
395
+ });
396
+ }
397
+
398
+ // Initialize with all lessons visible
399
+ window.onload = function() {
400
+ showLanguage('all');
401
+ };
402
+ </script>
403
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Janngu/grammaire" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
404
+ </html>