-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
461 lines (378 loc) · 12.6 KB
/
index.html
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page d'accueil</title>
<link rel="icon" href="img/favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css"
integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="style.css">
<style>
/* Bandeau défilant */
.bandeau_item {
height: 100%;
background-color: #DDDDDD;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
padding: 9px;
}
.scroll-container {
overflow: hidden;
white-space: nowrap;
width: 100%;
/* Full width of the viewport */
}
/* Scrolling text styling */
.scroll-text {
display: inline-block;
font-size: 1.5rem;
padding-right: 100%;
/* Adds space so the text can fully scroll off-screen */
animation: scroll-left 200s linear infinite;
}
.scroll-text:hover {
animation-play-state: paused; /*voir si peux mettre pause moins abruptement*/
}
/* Define the scrolling animation */
@keyframes scroll-left {
from {
transform: translate3d(0, 0, 0);
/* Start from the right edge */
}
to {
transform: translate3d(-50%, 0, 0);
/* Scroll left */
}
}
/* Body and nav */
body{
background-color:#E9E9E9;
}
body,
h1,
h2,
h3,
h4,
h5 {
font-family: Verdana, Geneva, Tahoma, sans-serif;
margin: 0;
}
h1 {
font-size: 150px ;
margin-left:150px;
}
h2{
margin-left:150px;
}
h3{
text-align:center;
margin-bottom :50px;
margin-top: 50px;
text-decoration: underline;
}
p {
margin: 1rem 0;
}
a {
text-decoration: none;
}
::selection {
background-color: #e8ffff;
color: #222222;
}
nav {
background-color: #E9E9E9;
color: #222222;
}
.checkbtn {
font-size: 1.5rem;
color: #222222;
cursor: pointer;
}
#check {
position: absolute;
width: 1px;
height: 1px;
clip: rect(1px, 1px, 1px, 1px);
overflow: hidden;
}
#check:checked~.nav-mobile {
display: block;
}
.nav-mobile {
display: none;
position: absolute;
top: 4.5rem;
left: 0;
overflow: hidden;
background: #E1E1E1;
z-index: 1;
width: 200px;
}
.nav-mobile a {
color: black;
padding: 1rem 1.5rem;
display: block;
border-bottom-color: black;
}
hr {
background-color: #E1E1E1;
padding: 1px;
border: none;
}
/* Media Queries for Responsive Navigation */
@media only screen and (min-width: 992px) {
#check,
.checkbtn,
.nav-mobile {
display: none;
/* Hide mobile menu and icon on larger screens */
}
}
/*Navigation menu ordinateur*/
nav ul {
list-style-type: none;
margin-top: 1%;
display: flex; /*pr permettre de mieux jongler entre logo, barre de recherche, onglets : disposition horizontale*/
align-items: center;
justify-content: center;
padding:0;
gap:15px; /*espace entre les élements de navig.*/
}
nav ul li {
float: left;
width: 10%;
display: flex;
justify-content: center;
position: relative
}
nav ul::after {
content: "";
display: table;
clear: both;
}
nav a {
display: block;
text-decoration: none;
text-transform: uppercase;
color: #222222;
border-bottom: 2px solid transparent;
padding:10px 10px;
font-weight: bold;
}
nav a:hover {
color: #5D5D5D;
opacity : .7;
}
.sous {
/*le dur du menu déoroulant*/
display: none;
box-shadow: 0px 1px 2px #CCC;
background-color: white;
}
nav>ul li:hover .sous {
display: block;
}
.sous li {
float: none;
width: 100%;
text-align: left;
}
.sous a {
padding: 10px;
border-bottom: none;
color:black;
text-decoration:none;
display: block;
}
.sous a:hover {
border-bottom: none;
background-color: RGBa(200, 200, 200, 0.1);
}
.déroulant > a::after {
content: " ▼"; /* Flèche ajoutée après le texte */
font-size: 12px; /* Ajustez la taille si nécessaire */
margin-left: 5px; /* Un peu d'espace entre le texte et la flèche */
color: inherit; /* Utilise la même couleur que le texte */
}
/* Afficher le sous-menu au survol de l'élément parent */
.déroulant:hover .sous {
display: block;
}
.sous {
display: none;
box-shadow: 0px 1px 2px #CCC;
background-color: white;
top:100%;
left:0;
position: absolute;
width: 100%; /*essayer 200px*/
z-index: 1000;
}
.button {
background-color: black; /* Fond noir */
color: white; /* Texte blanc */
padding: 10px 20px; /* Espace interne pour un effet de bouton */
border-radius: 10px; /* Angles arrondis un peu*/
text-align: center; /* Centrer le texte */
text-decoration: none; /* Supprimer le soulignement du lien */
font-weight: bold; /* Texte en gras pour plus de visibilité */
display: inline-block; /* Assure le comportement de bouton */
transition: background-color 0.3s ease; /* Animation de transition */
}
/* Changement de couleur au survol */
.button:hover {
background-color: #333333; /* Un noir plus clair au survol */
}
.logo_rsx {
display: flex;
gap: 0px;
/* Ajustez la valeur pour l'espacement souhaité */
align-items: center;
/* Centre les logos verticalement dans le conteneur */
}
@media only screen and (max-width: 992px) {
.search-bar input[type="text"] {
width: 100%; /* Prend toute la largeur disponible sur petit écran */
height: auto; /* Adapte la hauteur si besoin */
}
.checkbtn {
display: block;
/* Show hamburger icon on mobile */
}
#check:checked~.nav-mobile {
display: block;
/* Show menu when checkbox is checked */
}
.nav-mobile {
top: 10rem;
width: 100%;
}
.nav-mobile a {
font-size: 2rem;
padding: 2rem 3rem;
}
.nav-ordi {
display: none;
}
}
/* Conteneur des images */
.image-container {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 30px;
flex-wrap: wrap;
}
.image-container a {
width: 25vw;
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
transition: transform 0.3s;
}
.image-container img {
width: 100%;
height: auto;
aspect-ratio: 1 / 1;
border-radius: 20px;
object-fit: cover;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Effet au survol des images */
.image-container a:hover {
transform: scale(1.05);
}
/* Style du pied de page */
footer {
margin-top: 150x;
font-size: 0.9em;
color: #333333;
display: flex;
justify-content: flex-end;
}
p{
text-align: center;
display: flex;
justify-content: center;
margin-left: 450px;
margin-right: 450px;
}
</style>
</head>
<body>
<header>
<div class="scroll-container">
<div class="scroll-text">
<a href="mailto:[email protected]" class="item_link">
<div class="bandeau_item">
✿◕ ‿ ◕✿ Bookez un rendez-vous, c'est par <strong> là</strong>
✿◕ ‿ ◕✿ Bookez un rendez-vous, c'est par <strong> là</strong>
✿◕ ‿ ◕✿ Bookez un rendez-vous, c'est par <strong> là</strong>
✿◕ ‿ ◕✿ Bookez un rendez-vous, c'est par <strong> là</strong>
✿◕ ‿ ◕✿ Bookez un rendez-vous, c'est par <strong> là</strong>
✿◕ ‿ ◕✿ Bookez un rendez-vous, c'est par <strong> là</strong>
✿◕ ‿ ◕✿ Bookez un rendez-vous, c'est par <strong> là</strong>
✿◕ ‿ ◕✿ Bookez un rendez-vous, c'est par <strong> là</strong>
✿◕ ‿ ◕✿ Bookez un rendez-vous, c'est par <strong> là</strong>
✿◕ ‿ ◕✿ Bookez un rendez-vous, c'est par <strong> là</strong>
✿◕ ‿ ◕✿ Bookez un rendez-vous, c'est par <strong> là</strong>
✿◕ ‿ ◕✿ Bookez un rendez-vous, c'est par <strong> là</strong>
✿◕ ‿ ◕✿ Bookez un rendez-vous, c'est par <strong> là</strong>
✿◕ ‿ ◕✿ Bookez un rendez-vous, c'est par <strong> là</strong>
</a>
</div>
</div>
</div>
</header>
<nav> <!-- Navigation mobile -->
<input type="checkbox" id="check">
<label for="check" class="checkbtn" aria-expanded="false">
<i class="fas fa-bars"></i>
</label>
<div class="nav-mobile w3-animate-right">
<a href="https://laplateforme.io/">Actualité</a> <!-- Utiliser ::before pour rajouter le logo de la plateforme -->
<a href="https://laplateforme.io/entreprise/atelier/">Réalisations</a>
<a href="https://laplateforme.io/news/">Evénements</a>
<a href="mailto:[email protected]">Contact</a>
</div>
<!-- Navigation ordinateur -->
<div class="nav-ordi">
<ul>
<li><a href="https://laplateforme.io/">Actualité</a></li>
<li><a href="https://laplateforme.io/entreprise/atelier/">Réalisations</a></li>
<li><a href="https://laplateforme.io/news/">Evénements</a></li>
<!-- Logos réseaux sociaux-->
<li class="logo_rsx">
<a href="https://www.instagram.com/LaPlateformeIO/"><img src="logo/instagram.png" alt="Logo Instagram" width="20" height="20"></a>
<a href="https://x.com/LaPlateformeIO"><img src="logo/twitter.png" alt="Logo Twitter" width="20" height="20"></a>
<a href="https://www.youtube.com/c/LaPlateformeIO"><img src="logo/youtube.png" alt="Logo YouTube" width="20" height="20"></a>
</li>
</ul>
</div>
</nav>
<main>
<h1><strong>La Plateforme_io</strong></h1>
<h2> <strong>votre</strong> studio de webdesign <em>documentaire</em></h2>
<h3>Nos dernières réalisations</h3>
<div class="image-container">
<a href="" target="_blank">
<img src="illustrations/Explo/Astrolabe_planisférique.jpg" alt="Astrolabe planisférique">
</a>
<a href="" target="_blank">
<img src="illustrations/Explo/Aldrissi_World_Map.jpg" alt="Carte du monde">
</a>
<a href="fansite_1.html" target="_blank">
<img src="illustrations/Explo/question_mark.png" alt="Notre dernière réalisation">
</a>
<p><strong>Ibn-Khaldoun</strong> <br>Il est aussi un historien de premier plan. Dans ces deux ouvrages résolument modernes dans leur méthode, il insiste dès le début sur l'importance des sources, de leur authenticité et de leur vérification à l'aune de critères purement rationnels. Les savants européens du XIXe siècle reconnaissent l'importance des Prolégomènes, et considèrent Ibn Khaldoun comme l'un des plus grands philosophes du Moyen Âge10,11. Georges Marçais affirme que l'œuvre d'Ibn Khaldoun est « un des ouvrages les plus substantiels et les plus intéressants qu'ait produits l'esprit humain »12,1</p>
<p><strong>Al-Idrissi</strong> <br>En effet, si la réputation d’al-Idrīsī comme géographe arabo-musulman n’est plus à faire, sa vie est très mal connue, ce qui rend difficile l’établissement de ses différentes phases. Nous nous arrêterons donc à nouveau ici sur al-Idrīsī avant al-Idrīsī, c’est-à-dire avant la célèbre date de 1154, censée être celle de la fin de la rédaction de sa géographie, une date aussi connue que problématique, en avançant de nouveaux arguments en faveur d’origines siciliennes d’al-Idrīsī. Sa biographie après cette date sera revue à la lumière de nouvelles hypothèses concernant sa production sicilienne postérieure.</p>
</main>
</body>
<footer>
<p>© 2024 </p>
</footer>
</html>