-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDeepSeek - Into the Unknown.mhtml
8864 lines (7596 loc) · 496 KB
/
DeepSeek - Into the Unknown.mhtml
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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
From: <Saved by Blink>
Snapshot-Content-Location: https://chat.deepseek.com/a/chat/s/0a8bc767-61ee-41a9-b3d5-ab4af7911c62
Subject: DeepSeek - Into the Unknown
Date: Mon, 3 Mar 2025 22:15:35 +0100
MIME-Version: 1.0
Content-Type: multipart/related;
type="text/html";
boundary="----MultipartBoundary--xODJEdEaKRAhQULcsghjT3psdjKrgKGEotfQQ3LlRa----"
------MultipartBoundary--xODJEdEaKRAhQULcsghjT3psdjKrgKGEotfQQ3LlRa----
Content-Type: text/html
Content-ID: <[email protected]>
Content-Transfer-Encoding: quoted-printable
Content-Location: https://chat.deepseek.com/a/chat/s/0a8bc767-61ee-41a9-b3d5-ab4af7911c62
<!DOCTYPE html><html lang=3D"en" class=3D"notranslate" translate=3D"no" dat=
a-arp=3D""><head><meta http-equiv=3D"Content-Type" content=3D"text/html; ch=
arset=3DUTF-8"><link rel=3D"stylesheet" type=3D"text/css" href=3D"cid:css-2=
[email protected]" /><link rel=3D"stylesheet"=
type=3D"text/css" href=3D"cid:css-684262f8-836e-4311-8234-e57e96922e54@mht=
ml.blink" /><link rel=3D"stylesheet" type=3D"text/css" href=3D"cid:css-8eb3=
[email protected]" /><title>DeepSeek - Into the =
Unknown</title><meta name=3D"viewport" content=3D"initial-scale=3D1.0,maxim=
um-scale=3D1,width=3Ddevice-width,viewport-fit=3Dcover"><meta name=3D"commi=
t-id" content=3D"8f69acb0"><meta name=3D"description" content=3D"Chat with =
DeepSeek AI =E2=80=93 your intelligent assistant for coding, content creati=
on, file reading, and more. Upload documents, engage in long-context conver=
sations, and get expert help in AI, natural language processing, and beyond=
. | =E6=B7=B1=E5=BA=A6=E6=B1=82=E7=B4=A2=EF=BC=88DeepSeek=EF=BC=89=E5=8A=A9=
=E5=8A=9B=E7=BC=96=E7=A8=8B=E4=BB=A3=E7=A0=81=E5=BC=80=E5=8F=91=E3=80=81=E5=
=88=9B=E6=84=8F=E5=86=99=E4=BD=9C=E3=80=81=E6=96=87=E4=BB=B6=E5=A4=84=E7=90=
=86=E7=AD=89=E4=BB=BB=E5=8A=A1=EF=BC=8C=E6=94=AF=E6=8C=81=E6=96=87=E4=BB=B6=
=E4=B8=8A=E4=BC=A0=E5=8F=8A=E9=95=BF=E6=96=87=E6=9C=AC=E5=AF=B9=E8=AF=9D=EF=
=BC=8C=E9=9A=8F=E6=97=B6=E4=B8=BA=E6=82=A8=E6=8F=90=E4=BE=9B=E9=AB=98=E6=95=
=88=E7=9A=84AI=E6=94=AF=E6=8C=81=E3=80=82"><meta name=3D"keywords" content=
=3D"DeepSeek,DeepSeek AI,DeepSeek Chat,AI assistant,coding assistant,long-c=
ontext LLM,Open Source LLM,natural language processing,AI chatbot,AI long t=
ext,AI content creation,large language model,=E6=B7=B1=E5=BA=A6=E6=B1=82=E7=
=B4=A2,=E5=A4=A7=E8=AF=AD=E8=A8=80=E6=A8=A1=E5=9E=8B,=E8=87=AA=E7=84=B6=E8=
=AF=AD=E8=A8=80=E5=A4=84=E7=90=86,AI=E8=81=8A=E5=A4=A9=E6=9C=BA=E5=99=A8=E4=
=BA=BA,=E4=BB=A3=E7=A0=81=E5=BC=80=E5=8F=91,=E5=88=9B=E6=84=8F=E5=86=99=E4=
=BD=9C,AI=E5=8A=A9=E6=89=8B,=E9=95=BF=E6=96=87=E6=9C=AC=E5=AF=B9=E8=AF=9D,=
=E6=96=87=E4=BB=B6=E5=A4=84=E7=90=86AI,=E5=A4=A7=E6=A8=A1=E5=9E=8B=E5=85=AC=
=E5=8F=B8,=E4=BA=BA=E5=B7=A5=E6=99=BA=E8=83=BD,AI=E5=BC=80=E5=8F=91=E5=8A=
=A9=E6=89=8B"><meta property=3D"og:url" content=3D"https://chat.deepseek.co=
m"><meta property=3D"og:type" content=3D"website"><meta property=3D"og:titl=
e" content=3D"DeepSeek"><meta property=3D"og:description" content=3D"Chat w=
ith DeepSeek AI."><meta property=3D"og:image" content=3D"https://chat.deeps=
eek.com/deepseek-chat.jpeg"><meta name=3D"twitter:card" content=3D"summary_=
large_image"><meta property=3D"twitter:domain" content=3D"deepseek.com"><me=
ta property=3D"twitter:url" content=3D"https://chat.deepseek.com"><meta nam=
e=3D"twitter:title" content=3D"DeepSeek"><meta name=3D"twitter:description"=
content=3D"Chat with DeepSeek AI."><meta name=3D"twitter:image" content=3D=
"https://chat.deepseek.com/deepseek-chat.jpeg"><meta name=3D"google" conten=
t=3D"notranslate"><meta name=3D"ip" content=3D"105.103.149.206"><meta name=
=3D"region" content=3D"DZ"><link rel=3D"apple-touch-icon" href=3D"https://c=
dn.deepseek.com/chat/icon.png"><link rel=3D"icon" type=3D"image/x-icon" hre=
f=3D"https://chat.deepseek.com/favicon.svg"><link href=3D"https://chat.deep=
seek.com/static/main.9a43d1d1c0.css" rel=3D"stylesheet"><link data-webpack=
=3D"@deepseek/chat:chunk-945" rel=3D"stylesheet" href=3D"https://chat.deeps=
eek.com/static/katex.b0999f1208.css"></head><body class=3D"en_US dark" data=
-ds-dark-theme=3D"dark" style=3D"--app-height: 629px;"><div id=3D"root"><di=
v class=3D"cb86951c"><div class=3D"cddfb2ed"></div><div class=3D"c3ecdb44">=
<div class=3D"dc04ec1d a02af2e6"><div class=3D"a7f3a288 f0d4f23d"><div clas=
s=3D"ds-icon" style=3D"font-size: 44px; width: 44px; height: 44px; cursor: =
pointer;"><svg viewBox=3D"0 0 30 30" fill=3D"none" xmlns=3D"http://www.w3.o=
rg/2000/svg" xmlns:xlink=3D"http://www.w3.org/1999/xlink"><path id=3D"path"=
d=3D"M27.501 8.46875C27.249 8.3457 27.1406 8.58008 26.9932 8.69922C26.9434=
8.73828 26.9004 8.78906 26.8584 8.83398C26.4902 9.22852 26.0605 9.48633 25=
.5 9.45508C24.6787 9.41016 23.9785 9.66797 23.3594 10.2969C23.2275 9.52148 =
22.79 9.05859 22.125 8.76172C21.7764 8.60742 21.4238 8.45312 21.1807 8.1171=
9C21.0098 7.87891 20.9639 7.61328 20.8779 7.35156C20.8242 7.19336 20.7695 7=
.03125 20.5879 7.00391C20.3906 6.97266 20.3135 7.13867 20.2363 7.27734C19.9=
258 7.84375 19.8066 8.46875 19.8174 9.10156C19.8447 10.5234 20.4453 11.6562=
21.6367 12.4629C21.7725 12.5547 21.8076 12.6484 21.7646 12.7832C21.6836 13=
.0605 21.5869 13.3301 21.501 13.6074C21.4473 13.7852 21.3662 13.8242 21.176=
8 13.7461C20.5225 13.4727 19.957 13.0684 19.458 12.5781C18.6104 11.7578 17.=
8438 10.8516 16.8877 10.1426C16.6631 9.97656 16.4395 9.82227 16.207 9.67578=
C15.2314 8.72656 16.335 7.94727 16.5898 7.85547C16.8574 7.75977 16.6826 7.4=
2773 15.8193 7.43164C14.957 7.43555 14.167 7.72461 13.1611 8.10938C13.0137 =
8.16797 12.8594 8.21094 12.7002 8.24414C11.7871 8.07227 10.8389 8.0332 9.84=
766 8.14453C7.98242 8.35352 6.49219 9.23633 5.39648 10.7441C4.08105 12.5547=
3.77148 14.6133 4.15039 16.7617C4.54883 19.0234 5.70215 20.8984 7.47559 22=
.3633C9.31348 23.8809 11.4307 24.625 13.8457 24.4824C15.3125 24.3984 16.946=
3 24.2012 18.7881 22.6406C19.2529 22.8711 19.7402 22.9629 20.5498 23.0332C2=
1.1729 23.0918 21.7725 23.002 22.2373 22.9062C22.9648 22.752 22.9141 22.078=
1 22.6514 21.9531C20.5186 20.959 20.9863 21.3633 20.5605 21.0371C21.6445 19=
.752 23.2783 18.418 23.917 14.0977C23.9668 13.7539 23.9238 13.5391 23.917 1=
3.2598C23.9131 13.0918 23.9512 13.0254 24.1445 13.0059C24.6787 12.9453 25.1=
973 12.7988 25.6738 12.5352C27.0557 11.7793 27.6123 10.5391 27.7441 9.05078=
C27.7637 8.82422 27.7402 8.58789 27.501 8.46875ZM15.46 21.8613C13.3926 20.2=
344 12.3906 19.6992 11.9766 19.7227C11.5898 19.7441 11.6592 20.1875 11.7441=
20.4766C11.833 20.7617 11.9492 20.959 12.1123 21.209C12.2246 21.375 12.301=
8 21.623 12 21.8066C11.334 22.2207 10.1768 21.668 10.1221 21.6406C8.77539 2=
0.8477 7.64941 19.7988 6.85547 18.3652C6.08984 16.9844 5.64453 15.5039 5.57=
129 13.9238C5.55176 13.541 5.66406 13.4062 6.04297 13.3379C6.54199 13.2461 =
7.05762 13.2266 7.55664 13.2988C9.66602 13.6074 11.4619 14.5527 12.9668 16.=
0469C13.8262 16.9004 14.4766 17.918 15.1465 18.9121C15.8584 19.9688 16.625 =
20.9746 17.6006 21.7988C17.9443 22.0879 18.2197 22.3086 18.4824 22.4707C17.=
6895 22.5586 16.3652 22.5781 15.46 21.8613ZM16.4502 15.4805C16.4502 15.3105=
16.5859 15.1758 16.7568 15.1758C16.7949 15.1758 16.8301 15.1836 16.8613 15=
.1953C16.9033 15.2109 16.9424 15.2344 16.9727 15.2695C17.0273 15.3223 17.05=
86 15.4004 17.0586 15.4805C17.0586 15.6504 16.9229 15.7852 16.7529 15.7852C=
16.582 15.7852 16.4502 15.6504 16.4502 15.4805ZM19.5273 17.0625C19.3301 17.=
1426 19.1328 17.2129 18.9434 17.2207C18.6494 17.2344 18.3281 17.1152 18.153=
3 16.9688C17.8828 16.7422 17.6895 16.6152 17.6074 16.2168C17.5732 16.0469 1=
7.5928 15.7852 17.623 15.6348C17.6934 15.3105 17.6152 15.1035 17.3877 14.91=
41C17.2012 14.7598 16.9658 14.7188 16.7061 14.7188C16.6094 14.7188 16.5205 =
14.6758 16.4541 14.6406C16.3457 14.5859 16.2568 14.4512 16.3418 14.2852C16.=
3691 14.2324 16.501 14.1016 16.5322 14.0781C16.8838 13.877 17.29 13.9434 17=
.666 14.0938C18.0146 14.2363 18.2773 14.498 18.6562 14.8672C19.0439 15.3145=
19.1133 15.4395 19.334 15.7734C19.5078 16.0371 19.667 16.3066 19.7754 16.6=
152C19.8408 16.8066 19.7559 16.9648 19.5273 17.0625Z" fill-rule=3D"nonzero"=
fill=3D"#4D6BFE"></path></svg></div><div style=3D"margin-top: 38px; displa=
y: flex;"><div class=3D"ds-icon-button" tabindex=3D"0" style=3D"--ds-icon-b=
utton-text-color: #ABB2BD; --ds-icon-button-size: 28px; --ds-icon-button-ho=
ver-color: #44444D;"><svg viewBox=3D"0 0 30 30" fill=3D"none" xmlns=3D"http=
://www.w3.org/2000/svg" xmlns:xlink=3D"http://www.w3.org/1999/xlink"><defs>=
<clipPath id=3D"clip1381_20236"><rect id=3D"=E6=89=93=E5=BC=80=E8=BE=B9=E6=
=A0=8F0730" width=3D"30.000000" height=3D"30.000000" fill=3D"white" fill-op=
acity=3D"0"></rect></clipPath></defs><rect id=3D"=E6=89=93=E5=BC=80=E8=BE=
=B9=E6=A0=8F0730" width=3D"30.000000" height=3D"30.000000" fill=3D"#FFFFFF"=
fill-opacity=3D"0"></rect><g clip-path=3D"url(#clip1381_20236)"><rect id=
=3D"rect" x=3D"11.572754" y=3D"17.683594" rx=3D"1.000947" width=3D"5.995172=
" height=3D"2.001895" transform=3D"rotate(-42.841 11.572754 17.683594)" fil=
l=3D"currentColor" fill-opacity=3D"1.000000"></rect><rect id=3D"rect" x=3D"=
16.033691" y=3D"16.271484" rx=3D"0.995190" width=3D"6.002943" height=3D"1.9=
90380" transform=3D"rotate(-139.147 16.033691 16.271484)" fill=3D"currentCo=
lor" fill-opacity=3D"1.000000"></rect><path id=3D"path" d=3D"M20.09 25.48L9=
.89 25.5C9.47 25.5 9.05 25.45 8.64 25.37C8.23 25.29 7.83 25.17 7.44 25C7.05=
24.84 6.68 24.64 6.33 24.41C5.98 24.18 5.66 23.91 5.36 23.61C5.07 23.31 4.=
8 22.99 4.57 22.64C4.34 22.29 4.14 21.92 3.98 21.53C3.82 21.14 3.69 20.74 3=
.61 20.32C3.53 19.91 3.49 19.49 3.49 19.07L3.49 10.92C3.49 10.5 3.53 10.08 =
3.61 9.67C3.69 9.25 3.82 8.85 3.98 8.46C4.14 8.07 4.34 7.7 4.57 7.35C4.8 7 =
5.07 6.68 5.36 6.38C5.66 6.08 5.98 5.81 6.33 5.58C6.68 5.35 7.05 5.15 7.44 =
4.99C7.83 4.82 8.23 4.7 8.64 4.62C9.05 4.54 9.47 4.5 9.89 4.5L20.09 4.48C20=
.51 4.48 20.93 4.52 21.34 4.6C21.75 4.69 22.15 4.81 22.54 4.97C22.93 5.13 2=
3.3 5.33 23.65 5.57C24 5.8 24.32 6.06 24.62 6.36C24.92 6.66 25.18 6.98 25.4=
1 7.33C25.65 7.69 25.84 8.06 26.01 8.45C26.17 8.84 26.29 9.24 26.37 9.65C26=
.45 10.06 26.49 10.48 26.5 10.91L26.5 19.06C26.49 19.48 26.45 19.89 26.37 2=
0.31C26.29 20.72 26.17 21.12 26.01 21.51C25.84 21.9 25.65 22.27 25.41 22.62=
C25.18 22.97 24.92 23.3 24.62 23.6C24.32 23.89 24 24.16 23.65 24.39C23.3 24=
.63 22.93 24.83 22.54 24.99C22.15 25.15 21.75 25.27 21.34 25.35C20.93 25.44=
20.51 25.48 20.09 25.48ZM9.89 6.59C9.61 6.59 9.32 6.62 9.05 6.67C8.77 6.73=
8.5 6.81 8.24 6.92C7.98 7.03 7.73 7.16 7.49 7.32C7.26 7.48 7.04 7.66 6.84 =
7.86C6.64 8.06 6.46 8.28 6.3 8.51C6.14 8.75 6.01 9 5.9 9.26C5.79 9.52 5.71 =
9.8 5.66 10.07C5.6 10.35 5.57 10.63 5.57 10.92L5.57 19.07C5.57 19.36 5.6 19=
.64 5.66 19.92C5.71 20.19 5.79 20.47 5.9 20.73C6.01 20.99 6.14 21.24 6.3 21=
.48C6.46 21.71 6.64 21.93 6.84 22.13C7.04 22.33 7.26 22.51 7.49 22.67C7.73 =
22.83 7.98 22.96 8.24 23.07C8.5 23.18 8.77 23.26 9.05 23.32C9.32 23.37 9.61=
23.4 9.89 23.4L20.09 23.39C20.38 23.39 20.66 23.36 20.94 23.3C21.21 23.25 =
21.48 23.17 21.75 23.06C22.01 22.95 22.26 22.81 22.49 22.66C22.73 22.5 22.9=
5 22.32 23.15 22.12C23.35 21.91 23.52 21.7 23.68 21.46C23.84 21.22 23.97 20=
.98 24.08 20.71C24.19 20.45 24.27 20.18 24.33 19.9C24.38 19.62 24.41 19.34 =
24.41 19.06L24.41 10.91C24.41 10.62 24.38 10.34 24.33 10.06C24.27 9.78 24.1=
9 9.51 24.08 9.25C23.97 8.98 23.84 8.74 23.68 8.5C23.52 8.26 23.35 8.04 23.=
15 7.84C22.95 7.64 22.73 7.46 22.49 7.3C22.26 7.15 22.01 7.01 21.75 6.9C21.=
48 6.79 21.21 6.71 20.94 6.66C20.66 6.6 20.38 6.57 20.09 6.57L9.89 6.59Z" f=
ill=3D"currentColor" fill-opacity=3D"1.000000" fill-rule=3D"nonzero"></path=
><path id=3D"rect" d=3D"M8.49 5.5L10.53 5.5L10.59 24.41L8.54 24.41L8.49 5.5=
Z" fill=3D"currentColor" fill-opacity=3D"1.000000" fill-rule=3D"evenodd"></=
path></g></svg></div></div><div style=3D"margin-top: 38px; display: flex;">=
<div class=3D"ds-icon-button" tabindex=3D"0" style=3D"--ds-icon-button-text=
-color: #ABB2BD; --ds-icon-button-size: 28px;"><svg viewBox=3D"0 0 30 30" f=
ill=3D"none" xmlns=3D"http://www.w3.org/2000/svg" xmlns:xlink=3D"http://www=
.w3.org/1999/xlink"><defs><clipPath id=3D"clip1325_20400"><rect id=3D"=E6=
=96=B0=E5=BB=BA=E4=BC=9A=E8=AF=9D0730" width=3D"30.000000" height=3D"30.000=
000" fill=3D"white" fill-opacity=3D"0"></rect></clipPath></defs><g clip-pat=
h=3D"url(#clip1325_20400)"><path id=3D"path" d=3D"M10.51 26.52C10.35 26.52 =
10.19 26.49 10.04 26.43C9.89 26.37 9.76 26.28 9.64 26.17C9.53 26.06 9.44 25=
.93 9.37 25.78C9.31 25.63 9.28 25.48 9.28 25.32L9.25 22.87C8.89 22.82 8.53 =
22.74 8.19 22.62C7.84 22.5 7.51 22.36 7.19 22.19C6.86 22.01 6.56 21.81 6.28=
21.58C5.99 21.36 5.73 21.11 5.49 20.83C5.25 20.56 5.04 20.27 4.85 19.96C4.=
67 19.65 4.51 19.33 4.38 18.99C4.25 18.65 4.16 18.3 4.09 17.95C4.03 17.6 4 =
17.24 4 16.88L4 10.38C4 9.99 4.03 9.6 4.11 9.21C4.19 8.82 4.31 8.45 4.46 8.=
08C4.61 7.72 4.8 7.37 5.03 7.04C5.25 6.72 5.5 6.41 5.78 6.13C6.07 5.86 6.38=
5.61 6.71 5.39C7.04 5.17 7.4 4.98 7.77 4.83C8.14 4.68 8.52 4.57 8.91 4.49C=
9.31 4.41 9.7 4.38 10.11 4.38L14.35 4.38C14.5 4.38 14.63 4.4 14.77 4.46C14.=
9 4.51 15.02 4.59 15.12 4.69C15.22 4.79 15.3 4.9 15.35 5.03C15.41 5.16 15.4=
3 5.3 15.43 5.44C15.43 5.58 15.41 5.71 15.35 5.84C15.3 5.97 15.22 6.09 15.1=
2 6.19C15.02 6.29 14.9 6.37 14.77 6.42C14.63 6.47 14.5 6.5 14.35 6.5L10.11 =
6.5C9.85 6.5 9.59 6.53 9.34 6.58C9.08 6.62 8.83 6.7 8.6 6.8C8.36 6.89 8.13 =
7.01 7.91 7.15C7.7 7.3 7.5 7.46 7.31 7.64C7.13 7.82 6.97 8.01 6.82 8.22C6.6=
8 8.44 6.56 8.66 6.46 8.9C6.36 9.13 6.28 9.37 6.23 9.62C6.18 9.87 6.16 10.1=
2 6.16 10.38L6.16 16.88C6.16 17.14 6.18 17.39 6.23 17.65C6.29 17.9 6.36 18.=
15 6.46 18.39C6.56 18.62 6.69 18.85 6.83 19.07C6.98 19.28 7.15 19.48 7.33 1=
9.66C7.52 19.85 7.72 20.01 7.94 20.15C8.16 20.3 8.39 20.42 8.63 20.52C8.87 =
20.62 9.13 20.69 9.38 20.74C9.64 20.79 9.9 20.82 10.17 20.82C10.33 20.82 10=
.49 20.85 10.64 20.91C10.79 20.97 10.92 21.06 11.04 21.17C11.15 21.28 11.24=
21.41 11.31 21.56C11.37 21.71 11.4 21.86 11.41 22.02L11.42 23.53L14.15 21.=
56C14.85 21.07 15.62 20.82 16.48 20.82L19.87 20.82C20.13 20.82 20.38 20.79 =
20.64 20.74C20.89 20.69 21.14 20.62 21.38 20.52C21.62 20.42 21.85 20.3 22.0=
6 20.16C22.28 20.02 22.48 19.86 22.66 19.68C22.84 19.5 23.01 19.3 23.15 19.=
09C23.29 18.88 23.42 18.66 23.52 18.42C23.61 18.19 23.69 17.94 23.74 17.69C=
23.79 17.44 23.82 17.19 23.82 16.94L23.82 13.58C23.82 13.44 23.84 13.3 23.9=
13.17C23.95 13.04 24.03 12.93 24.13 12.83C24.23 12.73 24.35 12.65 24.48 12=
.6C24.62 12.54 24.75 12.52 24.9 12.52C25.04 12.52 25.18 12.54 25.31 12.6C25=
.44 12.65 25.56 12.73 25.66 12.83C25.76 12.93 25.84 13.04 25.9 13.17C25.95 =
13.3 25.98 13.44 25.98 13.58L25.98 16.94C25.98 17.33 25.94 17.72 25.86 18.1=
1C25.78 18.5 25.67 18.87 25.51 19.24C25.36 19.6 25.17 19.95 24.95 20.27C24.=
73 20.6 24.47 20.9 24.19 21.18C23.9 21.46 23.6 21.71 23.26 21.93C22.93 22.1=
5 22.58 22.33 22.21 22.48C21.83 22.63 21.45 22.75 21.06 22.83C20.67 22.9 20=
.27 22.94 19.87 22.94L17.19 22.94C16.33 22.94 15.56 23.19 14.86 23.69L11.24=
26.29C11.02 26.44 10.78 26.52 10.51 26.52Z" fill=3D"currentColor" fill-opa=
city=3D"1.000000" fill-rule=3D"nonzero"></path><rect id=3D"rect" x=3D"17.77=
0508" y=3D"6.396484" rx=3D"1.062250" width=3D"8.060087" height=3D"2.124500"=
fill=3D"currentColor" fill-opacity=3D"1.000000"></rect><rect id=3D"rect" x=
=3D"20.718750" y=3D"3.500000" rx=3D"1.081197" width=3D"2.162393" height=3D"=
7.918844" fill=3D"currentColor" fill-opacity=3D"1.000000"></rect></g></svg>=
</div></div><div style=3D"flex: 1 1 0%;"></div><div class=3D"b91228e4"><div=
class=3D"ds-icon" style=3D"font-size: 28px; width: 28px; height: 28px;"><s=
vg viewBox=3D"0 0 1024 1024" xmlns=3D"http://www.w3.org/2000/svg" width=3D"=
300" height=3D"300"><path d=3D"M725.333 1024H298.667a128 128 0 0 1-128-128V=
128a128 128 0 0 1 128-128h426.666a128 128 0 0 1 128 128v768a128 128 0 0 1-1=
28 128zM298.667 85.333A42.667 42.667 0 0 0 256 128v768a42.667 42.667 0 0 0 =
42.667 42.667h426.666A42.667 42.667 0 0 0 768 896V128a42.667 42.667 0 0 0-4=
2.667-42.667z" fill=3D"currentColor"></path><path d=3D"M469.33299999999997 =
853.333a42.667 42.667 0 1 0 85.334 0 42.667 42.667 0 1 0-85.334 0zM554.667 =
213.333h-85.334a42.667 42.667 0 0 1 0-85.333h85.334a42.667 42.667 0 0 1 0 8=
5.333z" fill=3D"currentColor"></path></svg></div></div><div class=3D"ede5bc=
47"><img class=3D"fdf01f38" src=3D"https://lh3.googleusercontent.com/a/ACg8=
ocKmIzZp1UizIPTyGAdIuSHFRQjZ9hVEPjVX9cL0kutlcvNLMg=3Ds96-c" alt=3D"" aria-h=
idden=3D"true"></div></div><div class=3D"cbcd962e a02af2e6"></div></div><di=
v class=3D"f2eea526"><div class=3D"a5cd95be"><div class=3D"be88ba8a"><div c=
lass=3D"f8d1e4c0"><div style=3D"flex: 1 1 0%; min-width: 0px; display: flex=
; place-content: center; z-index: 12; margin-top: 10px;"><div class=3D"d8ed=
659a" tabindex=3D"0" style=3D"outline: none;">Stylisation islamique pleine =
largeur r=C3=A9actif</div></div><div class=3D"b480065b"></div></div><div cl=
ass=3D"efe408db"><div class=3D"ds-icon d7829b2f e7d8739b" style=3D"font-siz=
e: 24px; width: 24px; height: 24px; color: rgb(205, 212, 223);"><svg width=
=3D"28" height=3D"28" viewBox=3D"0 0 28 28" fill=3D"none" xmlns=3D"http://w=
ww.w3.org/2000/svg"><path d=3D"M23.7222 4H4.27776C3.57207 4 3 4.57207 3 5.2=
7776C3 5.98345 3.57207 6.55553 4.27776 6.55553H23.7222C24.4279 6.55553 25 5=
.98345 25 5.27776C25 4.57207 24.4279 4 23.7222 4Z" fill=3D"currentColor"></=
path><path d=3D"M14.7593 12.8887H4.27776C3.57207 12.8887 3 13.4607 3 14.166=
4C3 14.8721 3.57207 15.4442 4.27776 15.4442H14.7593C15.465 15.4442 16.037 1=
4.8721 16.037 14.1664C16.037 13.4607 15.465 12.8887 14.7593 12.8887Z" fill=
=3D"currentColor"></path><path d=3D"M23.7222 21.7334H4.27776C3.57207 21.733=
4 3 22.3055 3 23.0112C3 23.7169 3.57207 24.2889 4.27776 24.2889H23.7222C24.=
4279 24.2889 25 23.7169 25 23.0112C25 22.3055 24.4279 21.7334 23.7222 21.73=
34Z" fill=3D"currentColor"></path></svg></div><div class=3D"ds-icon d7829b2=
f ecf90b28" style=3D"font-size: 24px; width: 24px; height: 24px; color: rgb=
(205, 212, 223);"><svg width=3D"28" height=3D"28" viewBox=3D"0 0 28 28" fil=
l=3D"none" xmlns=3D"http://www.w3.org/2000/svg"><path d=3D"M9.10999 27C8.92=
999 27 8.76001 26.96 8.60001 26.9C8.43001 26.83 8.29 26.74 8.16 26.61C8.03 =
26.49 7.94 26.3499 7.87 26.1899C7.79999 26.0299 7.76001 25.8599 7.76001 25.=
6899L7.73001 23.04C7.34001 22.98 6.95001 22.8799 6.57001 22.7599C6.19001 22=
.6299 5.83001 22.48 5.48001 22.29C5.13001 22.1 4.79999 21.88 4.48999 21.63C=
4.17999 21.39 3.89 21.1199 3.63 20.82C3.37 20.52 3.13999 20.21 2.92999 19.8=
7C2.72999 19.53 2.56001 19.18 2.42001 18.82C2.28001 18.45 2.17001 18.07 2.1=
0001 17.69C2.03001 17.3 2 16.92 2 16.53V9.46995C2 9.03995 2.04 8.61995 2.12=
8.19995C2.21 7.77995 2.34 7.36995 2.5 6.96995C2.67 6.57995 2.88 6.19995 3.=
12 5.84995C3.36 5.48995 3.64001 5.15995 3.95001 4.85995C4.26001 4.55995 4.5=
9999 4.28995 4.95999 4.04995C5.32999 3.80995 5.70999 3.60995 6.10999 3.4499=
5C6.51999 3.27995 6.94 3.15995 7.37 3.07995C7.79999 2.98995 8.23001 2.94995=
8.67001 2.94995H13.3C13.46 2.94995 13.61 2.97995 13.76 3.03995C13.9 3.0999=
5 14.03 3.17995 14.14 3.28995C14.25 3.39995 14.33 3.51995 14.39 3.65995C14.=
45 3.79995 14.48 3.94995 14.48 4.09995C14.48 4.25995 14.45 4.39995 14.39 4.=
54995C14.33 4.68995 14.25 4.80995 14.14 4.91995C14.03 5.02995 13.9 5.10995 =
13.76 5.16995C13.61 5.22995 13.46 5.25995 13.3 5.25995H8.67001C8.38001 5.25=
995 8.09999 5.27995 7.82999 5.33995C7.54999 5.38995 7.27999 5.46995 7.01999=
5.57995C6.75999 5.67995 6.50999 5.80995 6.26999 5.96995C6.03999 6.11995 5.=
82 6.29995 5.62 6.48995C5.42 6.68995 5.23999 6.89995 5.07999 7.12995C4.9299=
9 7.35995 4.78999 7.59995 4.67999 7.85995C4.57999 8.10995 4.49 8.37995 4.44=
8.64995C4.38 8.91995 4.35999 9.18995 4.35999 9.46995V16.53C4.35999 16.81 4=
.38 17.08 4.44 17.36C4.5 17.63 4.58 17.9 4.69 18.16C4.8 18.42 4.93 18.67 5.=
09 18.9C5.25 19.13 5.43001 19.3499 5.64001 19.5499C5.84001 19.75 6.05999 19=
.92 6.29999 20.08C6.53999 20.24 6.79 20.37 7.06 20.47C7.32 20.58 7.6 20.66 =
7.88 20.72C8.16001 20.77 8.44001 20.7999 8.73001 20.7999C8.91001 20.7999 9.=
08 20.83 9.25 20.9C9.41 20.97 9.55999 21.0599 9.67999 21.18C9.80999 21.3099=
9.91001 21.45 9.98001 21.61C10.05 21.77 10.08 21.94 10.09 22.11L10.1 23.74=
L13.08 21.61C13.84 21.07 14.69 20.7999 15.63 20.7999H19.32C19.61 20.7999 19=
.89 20.77 20.16 20.72C20.44 20.67 20.71 20.59 20.97 20.4799C21.23 20.3699 2=
1.48 20.24 21.72 20.09C21.95 19.94 22.17 19.76 22.37 19.57C22.57 19.3699 22=
.75 19.16 22.91 18.93C23.07 18.7 23.2 18.46 23.31 18.2C23.41 17.95 23.5 17.=
68 23.55 17.41C23.61 17.14 23.63 16.87 23.63 16.59V12.94C23.63 12.79 23.66 =
12.64 23.72 12.5C23.78 12.36 23.87 12.23 23.98 12.13C24.09 12.02 24.22 11.9=
3 24.36 11.88C24.51 11.82 24.66 11.79 24.82 11.79C24.97 11.79 25.12 11.82 2=
5.27 11.88C25.41 11.93 25.54 12.02 25.65 12.13C25.76 12.23 25.85 12.36 25.9=
1 12.5C25.97 12.64 26 12.79 26 12.94V16.59C26 17.02 25.95 17.44 25.87 17.86=
C25.78 18.28 25.66 18.69 25.49 19.08C25.32 19.48 25.11 19.8499 24.87 20.209=
9C24.63 20.57 24.35 20.9 24.04 21.2C23.73 21.5 23.39 21.7699 23.03 22.0099C=
22.67 22.2499 22.28 22.45 21.88 22.61C21.47 22.77 21.06 22.9 20.63 22.9799C=
20.2 23.07 19.76 23.11 19.32 23.11H16.4C15.47 23.11 14.62 23.3799 13.86 23.=
9199L9.91 26.74C9.67 26.91 9.39999 27 9.10999 27Z" fill=3D"currentColor"></=
path><path d=3D"M24.6805 5.14453H18.1874C17.5505 5.14453 17.0342 5.66086 17=
.0342 6.29778C17.0342 6.9347 17.5505 7.45102 18.1874 7.45102H24.6805C25.317=
5 7.45102 25.8338 6.9347 25.8338 6.29778C25.8338 5.66086 25.3175 5.14453 24=
.6805 5.14453Z" fill=3D"currentColor"></path><path d=3D"M22.6137 3.1804C22.=
6137 2.52848 22.0852 2 21.4333 2C20.7814 2 20.2529 2.52848 20.2529 3.1804V9=
.4168C20.2529 10.0687 20.7814 10.5972 21.4333 10.5972C22.0852 10.5972 22.61=
37 10.0687 22.6137 9.4168V3.1804Z" fill=3D"currentColor"></path></svg></div=
></div></div><div class=3D"b83ee326"><div class=3D"f6004764"><div class=3D"=
f72b0bab"><div class=3D"dad65929"><div class=3D"fa81"><div class=3D"fbb737a=
4">styler moi cette parter en style islamique je veut que elle utilise Uti=
lise toute la largeur de l'=C3=A9cran <section id=3D"accueil">
<h2>=D9=85=D8=B1=D8=AD=D8=A8=D8=A7 =D8=A8=D9=83=D9=85 =D9=81=
=D9=8A =D8=B1=D8=AD=D8=A7=D8=A8 =D8=B1=D9=85=D8=B6=D8=A7=D9=86</h2>
<p>=D9=87=D8=B0=D8=A7 =D8=A7=D9=84=D9=85=D9=88=D9=82=D8=B9 =
=D9=8A=D8=B1=D8=A7=D9=81=D9=82=D9=83=D9=85 =D8=AE=D9=84=D8=A7=D9=84 =D8=A7=
=D9=84=D8=B4=D9=87=D8=B1 =D8=A7=D9=84=D9=81=D8=B6=D9=8A=D9=84 =D8=A8=D9=85=
=D9=88=D8=A7=D8=B1=D8=AF =D8=A5=D8=B3=D9=84=D8=A7=D9=85=D9=8A=D8=A9 =D8=B1=
=D9=85=D8=B6=D8=A7=D9=86 =D9=85=D8=A8=D8=A7=D8=B1=D9=83 =D9=84=D9=84=D8=AC=
=D9=85=D9=8A=D8=B9 <br>=D9=84=D8=A7 =D8=AA=D9=86=D8=B3=D9=88=D9=86=
=D8=A7 =D9=85=D9=86 =D8=B5=D8=A7=D9=84=D8=AD =D8=AF=D8=B9=D8=A7=D8=A6=D9=83=
=D9=85</p>
<div id=3D"daily-quote" class=3D"quote-box">
<h3></h3>
<p id=3D"quote"></p>
</div>
</section><div class=3D"ds-flex e0558cb1" style=3D"position: abso=
lute; right: calc(100% + 18px); top: 12px; gap: 12px;"><div class=3D"ds-ico=
n-button" tabindex=3D"0" style=3D"--ds-icon-button-text-color: #CDD4DF; --d=
s-icon-button-size: 20px; --ds-icon-button-hover-color: #44444D;"><div clas=
s=3D"ds-icon" style=3D"font-size: 20px; width: 20px; height: 20px;"><svg vi=
ewBox=3D"0 0 20 20" fill=3D"none" xmlns=3D"http://www.w3.org/2000/svg" xmln=
s:xlink=3D"http://www.w3.org/1999/xlink"><defs><clipPath id=3D"clip1248_201=
93"><rect id=3D"=E9=8D=A5=E6=83=A7=E7=9C=B0_1" width=3D"17.052675" height=
=3D"17.052441" transform=3D"translate(1.000000 1.000000)" fill=3D"white" fi=
ll-opacity=3D"0"></rect></clipPath><clipPath id=3D"clip1257_20794"><rect id=
=3D"=E5=A4=8D=E5=88=B6" width=3D"20.000000" height=3D"20.000000" fill=3D"wh=
ite" fill-opacity=3D"0"></rect></clipPath></defs><g clip-path=3D"url(#clip1=
257_20794)"><g clip-path=3D"url(#clip1248_20193)"><path id=3D"path" d=3D"M5=
.03 14.64C4.77 14.64 4.5 14.62 4.24 14.56C3.98 14.51 3.73 14.43 3.49 14.33C=
3.24 14.23 3.01 14.1 2.79 13.96C2.57 13.81 2.37 13.64 2.18 13.45C1.99 13.26=
1.82 13.05 1.68 12.83C1.53 12.61 1.4 12.37 1.3 12.13C1.2 11.88 1.13 11.63 =
1.07 11.36C1.02 11.1 1 10.84 1 10.57L1 5.07C1 4.8 1.02 4.54 1.07 4.27C1.13 =
4.01 1.2 3.76 1.3 3.51C1.4 3.26 1.53 3.03 1.68 2.81C1.82 2.58 1.99 2.38 2.1=
8 2.19C2.37 2 2.57 1.83 2.79 1.68C3.01 1.53 3.24 1.41 3.49 1.31C3.73 1.2 3.=
98 1.13 4.24 1.07C4.5 1.02 4.77 1 5.03 1L10.49 1C10.75 1 11.01 1.02 11.27 1=
.07C11.53 1.13 11.78 1.2 12.03 1.31C12.27 1.41 12.51 1.53 12.73 1.68C12.95 =
1.83 13.15 2 13.34 2.19C13.53 2.38 13.69 2.58 13.84 2.81C13.99 3.03 14.11 3=
.26 14.21 3.51C14.31 3.76 14.39 4.01 14.44 4.27C14.5 4.54 14.52 4.8 14.52 5=
.07L12.94 5.07C12.94 4.91 12.92 4.75 12.89 4.58C12.86 4.43 12.81 4.27 12.75=
4.12C12.69 3.97 12.61 3.83 12.52 3.69C12.43 3.56 12.33 3.43 12.22 3.32C12.=
1 3.2 11.98 3.1 11.85 3.01C11.71 2.92 11.57 2.84 11.42 2.78C11.27 2.72 11.1=
2 2.67 10.96 2.64C10.81 2.61 10.65 2.59 10.49 2.59L5.03 2.59C4.87 2.59 4.71=
2.61 4.55 2.64C4.4 2.67 4.24 2.72 4.09 2.78C3.95 2.84 3.8 2.92 3.67 3.01C3=
.54 3.1 3.41 3.2 3.3 3.32C3.18 3.43 3.08 3.56 2.99 3.69C2.9 3.83 2.83 3.97 =
2.77 4.12C2.71 4.27 2.66 4.43 2.63 4.58C2.6 4.75 2.58 4.91 2.58 5.07L2.58 1=
0.57C2.58 10.73 2.6 10.89 2.63 11.05C2.66 11.21 2.71 11.37 2.77 11.52C2.83 =
11.67 2.9 11.81 2.99 11.94C3.08 12.08 3.18 12.2 3.3 12.32C3.41 12.43 3.54 1=
2.54 3.67 12.63C3.8 12.72 3.95 12.79 4.09 12.86C4.24 12.92 4.4 12.96 4.55 1=
3C4.71 13.03 4.87 13.04 5.03 13.04L5.03 14.64Z" fill=3D"currentColor" fill-=
opacity=3D"1.000000" fill-rule=3D"evenodd"></path></g><path id=3D"path" d=
=3D"M14.75 18.91L9.3 18.91C9.03 18.91 8.77 18.88 8.51 18.83C8.25 18.78 8 18=
.7 7.75 18.6C7.51 18.49 7.27 18.37 7.05 18.22C6.83 18.07 6.63 17.9 6.44 17.=
71C6.25 17.52 6.09 17.32 5.94 17.1C5.79 16.87 5.67 16.64 5.57 16.39C5.47 16=
.14 5.39 15.89 5.34 15.63C5.28 15.37 5.26 15.1 5.26 14.83L5.26 9.33C5.26 9.=
06 5.28 8.8 5.34 8.54C5.39 8.28 5.47 8.02 5.57 7.77C5.67 7.53 5.79 7.29 5.9=
4 7.07C6.09 6.85 6.25 6.64 6.44 6.45C6.63 6.26 6.83 6.09 7.05 5.95C7.27 5.8=
7.51 5.67 7.75 5.57C8 5.47 8.25 5.39 8.51 5.34C8.77 5.29 9.03 5.26 9.3 5.2=
6L14.75 5.26C15.01 5.26 15.28 5.29 15.54 5.34C15.8 5.39 16.05 5.47 16.29 5.=
57C16.54 5.67 16.77 5.8 16.99 5.95C17.21 6.09 17.41 6.26 17.6 6.45C17.79 6.=
64 17.96 6.85 18.1 7.07C18.25 7.29 18.37 7.53 18.48 7.77C18.58 8.02 18.65 8=
.28 18.71 8.54C18.76 8.8 18.78 9.06 18.78 9.33L18.78 14.83C18.78 15.1 18.76=
15.37 18.71 15.63C18.65 15.89 18.58 16.14 18.48 16.39C18.37 16.64 18.25 16=
.87 18.1 17.1C17.96 17.32 17.79 17.52 17.6 17.71C17.41 17.9 17.21 18.07 16.=
99 18.22C16.77 18.37 16.54 18.49 16.29 18.6C16.05 18.7 15.8 18.78 15.54 18.=
83C15.28 18.88 15.01 18.91 14.75 18.91ZM9.3 6.86C9.13 6.86 8.97 6.87 8.82 6=
.91C8.66 6.94 8.51 6.98 8.36 7.05C8.21 7.11 8.07 7.18 7.93 7.28C7.8 7.37 7.=
68 7.47 7.56 7.58C7.45 7.7 7.35 7.82 7.26 7.96C7.17 8.09 7.09 8.24 7.03 8.3=
8C6.97 8.54 6.92 8.69 6.89 8.85C6.86 9.01 6.84 9.17 6.84 9.33L6.84 14.83C6.=
84 15 6.86 15.16 6.89 15.32C6.92 15.48 6.97 15.63 7.03 15.78C7.09 15.93 7.1=
7 16.07 7.26 16.21C7.35 16.34 7.45 16.47 7.56 16.58C7.68 16.7 7.8 16.8 7.93=
16.89C8.07 16.98 8.21 17.06 8.36 17.12C8.51 17.18 8.66 17.23 8.82 17.26C8.=
97 17.29 9.13 17.31 9.3 17.31L14.75 17.31C14.91 17.31 15.07 17.29 15.23 17.=
26C15.38 17.23 15.54 17.18 15.69 17.12C15.83 17.06 15.98 16.98 16.11 16.89C=
16.24 16.8 16.37 16.7 16.48 16.58C16.59 16.47 16.7 16.34 16.79 16.21C16.87 =
16.07 16.95 15.93 17.01 15.78C17.07 15.63 17.12 15.48 17.15 15.32C17.18 15.=
16 17.2 15 17.2 14.83L17.2 9.33C17.2 9.17 17.18 9.01 17.15 8.85C17.12 8.69 =
17.07 8.54 17.01 8.38C16.95 8.24 16.87 8.09 16.79 7.96C16.7 7.82 16.59 7.7 =
16.48 7.58C16.37 7.47 16.24 7.37 16.11 7.28C15.98 7.19 15.83 7.11 15.69 7.0=
5C15.54 6.98 15.38 6.94 15.23 6.91C15.07 6.87 14.91 6.86 14.75 6.86L9.3 6.8=
6Z" fill=3D"currentColor" fill-opacity=3D"1.000000" fill-rule=3D"nonzero"><=
/path></g></svg></div></div><div class=3D"ds-icon-button" tabindex=3D"0" st=
yle=3D"--ds-icon-button-text-color: #CDD4DF; --ds-icon-button-size: 20px; -=
-ds-icon-button-hover-color: #44444D;"><div class=3D"ds-icon" style=3D"font=
-size: 20px; width: 20px; height: 20px;"><svg width=3D"20" height=3D"20" vi=
ewBox=3D"0 0 20 20" fill=3D"none" xmlns=3D"http://www.w3.org/2000/svg"><pat=
h d=3D"M18.2286 17.3545H1.77142C1.34538 17.3545 1 17.6999 1 18.1259C1 18.55=
2 1.34538 18.8973 1.77142 18.8973H18.2286C18.6546 18.8973 19 18.552 19 18.1=
259C19 17.6999 18.6546 17.3545 18.2286 17.3545Z" fill=3D"currentColor"></pa=
th><mask id=3D"mask0_400_418" maskUnits=3D"userSpaceOnUse" x=3D"1" y=3D"1" =
width=3D"15" height=3D"15"><path d=3D"M15.1429 1.10254H1V15.2454H15.1429V1.=
10254Z" fill=3D"white"></path></mask><g mask=3D"url(#mask0_400_418)"><path =
d=3D"M2.48999 15.2425C2.36999 15.2425 2.26002 15.2225 2.15002 15.2025C2.040=
02 15.1725 1.94003 15.1325 1.84003 15.0825C1.73003 15.0325 1.63999 14.9825 =
1.54999 14.9025C1.45999 14.8325 1.39001 14.7525 1.32001 14.6625C1.25001 14.=
5825 1.19001 14.4825 1.14001 14.3825C1.09001 14.2825 1.05003 14.1725 1.0300=
3 14.0625C1.01003 13.9525 1 13.8425 1 13.7225C1 13.6125 1.00998 13.5025 1.0=
3998 13.3925L1.75 10.4325C1.9 9.81254 2.20001 9.28253 2.64001 8.83253L9.400=
02 2.08253C9.55002 1.92253 9.71997 1.78254 9.90997 1.66254C10.09 1.54254 10=
.28 1.44254 10.49 1.35254C10.69 1.27254 10.9 1.20254 11.12 1.16254C11.33 1.=
12254 11.55 1.10254 11.77 1.10254C12 1.10254 12.21 1.12254 12.43 1.16254C12=
.65 1.20254 12.86 1.27254 13.06 1.35254C13.27 1.44254 13.46 1.54254 13.64 1=
.66254C13.83 1.78254 14 1.92253 14.15 2.08253C14.31 2.24253 14.45 2.41254 1=
4.57 2.59254C14.69 2.77254 14.79 2.97255 14.88 3.17255C14.96 3.37255 15.03 =
3.59254 15.07 3.80254C15.11 4.02254 15.13 4.24254 15.13 4.46254C15.13 4.682=
54 15.11 4.90253 15.07 5.11253C15.03 5.33253 14.96 5.54254 14.88 5.74254C14=
.79 5.95254 14.69 6.14254 14.57 6.32254C14.45 6.51254 14.31 6.68253 14.15 6=
.83253L7.40002 13.5925C6.95002 14.0425 6.42 14.3325 5.81 14.4825L2.84003 15=
.1925C2.73003 15.2225 2.60999 15.2425 2.48999 15.2425ZM11.67 2.73254C11.22 =
2.76254 10.84 2.94254 10.52 3.26254L3.78998 9.99254C3.55998 10.2225 3.41002=
10.4925 3.33002 10.8125L2.66998 13.5625L5.42999 12.9025C5.73999 12.8225 6.=
02 12.6725 6.25 12.4425L13 5.68254C13.08 5.60254 13.15 5.52255 13.22 5.4225=
5C13.28 5.33255 13.33 5.23254 13.38 5.12254C13.42 5.02254 13.45 4.91254 13.=
47 4.80254C13.5 4.68254 13.51 4.57254 13.51 4.46254C13.51 4.34254 13.5 4.23=
254 13.47 4.12254C13.45 4.01254 13.42 3.90254 13.38 3.79254C13.33 3.69254 1=
3.28 3.59254 13.22 3.49254C13.15 3.40254 13.08 3.31254 13 3.23254C12.82 3.0=
6254 12.62 2.92254 12.39 2.84254C12.16 2.75254 11.91 2.71254 11.67 2.73254Z=
" fill=3D"currentColor"></path></g></svg></div></div></div></div></div><div=
class=3D"f9bf7997 c05b5566"><div class=3D"eb23581b dfa60d66"><svg viewBox=
=3D"0 0 30 30" fill=3D"none" xmlns=3D"http://www.w3.org/2000/svg" xmlns:xli=
nk=3D"http://www.w3.org/1999/xlink"><path id=3D"path" d=3D"M27.501 8.46875C=
27.249 8.3457 27.1406 8.58008 26.9932 8.69922C26.9434 8.73828 26.9004 8.789=
06 26.8584 8.83398C26.4902 9.22852 26.0605 9.48633 25.5 9.45508C24.6787 9.4=
1016 23.9785 9.66797 23.3594 10.2969C23.2275 9.52148 22.79 9.05859 22.125 8=
.76172C21.7764 8.60742 21.4238 8.45312 21.1807 8.11719C21.0098 7.87891 20.9=
639 7.61328 20.8779 7.35156C20.8242 7.19336 20.7695 7.03125 20.5879 7.00391=
C20.3906 6.97266 20.3135 7.13867 20.2363 7.27734C19.9258 7.84375 19.8066 8.=
46875 19.8174 9.10156C19.8447 10.5234 20.4453 11.6562 21.6367 12.4629C21.77=
25 12.5547 21.8076 12.6484 21.7646 12.7832C21.6836 13.0605 21.5869 13.3301 =
21.501 13.6074C21.4473 13.7852 21.3662 13.8242 21.1768 13.7461C20.5225 13.4=
727 19.957 13.0684 19.458 12.5781C18.6104 11.7578 17.8438 10.8516 16.8877 1=
0.1426C16.6631 9.97656 16.4395 9.82227 16.207 9.67578C15.2314 8.72656 16.33=
5 7.94727 16.5898 7.85547C16.8574 7.75977 16.6826 7.42773 15.8193 7.43164C1=
4.957 7.43555 14.167 7.72461 13.1611 8.10938C13.0137 8.16797 12.8594 8.2109=
4 12.7002 8.24414C11.7871 8.07227 10.8389 8.0332 9.84766 8.14453C7.98242 8.=
35352 6.49219 9.23633 5.39648 10.7441C4.08105 12.5547 3.77148 14.6133 4.150=
39 16.7617C4.54883 19.0234 5.70215 20.8984 7.47559 22.3633C9.31348 23.8809 =
11.4307 24.625 13.8457 24.4824C15.3125 24.3984 16.9463 24.2012 18.7881 22.6=
406C19.2529 22.8711 19.7402 22.9629 20.5498 23.0332C21.1729 23.0918 21.7725=
23.002 22.2373 22.9062C22.9648 22.752 22.9141 22.0781 22.6514 21.9531C20.5=
186 20.959 20.9863 21.3633 20.5605 21.0371C21.6445 19.752 23.2783 18.418 23=
.917 14.0977C23.9668 13.7539 23.9238 13.5391 23.917 13.2598C23.9131 13.0918=
23.9512 13.0254 24.1445 13.0059C24.6787 12.9453 25.1973 12.7988 25.6738 12=
.5352C27.0557 11.7793 27.6123 10.5391 27.7441 9.05078C27.7637 8.82422 27.74=
02 8.58789 27.501 8.46875ZM15.46 21.8613C13.3926 20.2344 12.3906 19.6992 11=
.9766 19.7227C11.5898 19.7441 11.6592 20.1875 11.7441 20.4766C11.833 20.761=
7 11.9492 20.959 12.1123 21.209C12.2246 21.375 12.3018 21.623 12 21.8066C11=
.334 22.2207 10.1768 21.668 10.1221 21.6406C8.77539 20.8477 7.64941 19.7988=
6.85547 18.3652C6.08984 16.9844 5.64453 15.5039 5.57129 13.9238C5.55176 13=
.541 5.66406 13.4062 6.04297 13.3379C6.54199 13.2461 7.05762 13.2266 7.5566=
4 13.2988C9.66602 13.6074 11.4619 14.5527 12.9668 16.0469C13.8262 16.9004 1=
4.4766 17.918 15.1465 18.9121C15.8584 19.9688 16.625 20.9746 17.6006 21.798=
8C17.9443 22.0879 18.2197 22.3086 18.4824 22.4707C17.6895 22.5586 16.3652 2=
2.5781 15.46 21.8613ZM16.4502 15.4805C16.4502 15.3105 16.5859 15.1758 16.75=
68 15.1758C16.7949 15.1758 16.8301 15.1836 16.8613 15.1953C16.9033 15.2109 =
16.9424 15.2344 16.9727 15.2695C17.0273 15.3223 17.0586 15.4004 17.0586 15.=
4805C17.0586 15.6504 16.9229 15.7852 16.7529 15.7852C16.582 15.7852 16.4502=
15.6504 16.4502 15.4805ZM19.5273 17.0625C19.3301 17.1426 19.1328 17.2129 1=
8.9434 17.2207C18.6494 17.2344 18.3281 17.1152 18.1533 16.9688C17.8828 16.7=
422 17.6895 16.6152 17.6074 16.2168C17.5732 16.0469 17.5928 15.7852 17.623 =
15.6348C17.6934 15.3105 17.6152 15.1035 17.3877 14.9141C17.2012 14.7598 16.=
9658 14.7188 16.7061 14.7188C16.6094 14.7188 16.5205 14.6758 16.4541 14.640=
6C16.3457 14.5859 16.2568 14.4512 16.3418 14.2852C16.3691 14.2324 16.501 14=
.1016 16.5322 14.0781C16.8838 13.877 17.29 13.9434 17.666 14.0938C18.0146 1=
4.2363 18.2773 14.498 18.6562 14.8672C19.0439 15.3145 19.1133 15.4395 19.33=
4 15.7734C19.5078 16.0371 19.667 16.3066 19.7754 16.6152C19.8408 16.8066 19=
.7559 16.9648 19.5273 17.0625Z" fill-rule=3D"nonzero" fill=3D"#4D6BFE"></pa=
th></svg></div><div class=3D"edb250b1"><div class=3D"a6d716f5 db5991dd"><di=
v class=3D"ds-icon acbf4957" style=3D"font-size: 12px; width: 12px; height:=
12px;"><svg width=3D"20" height=3D"20" viewBox=3D"0 0 20 20" fill=3D"none"=
xmlns=3D"http://www.w3.org/2000/svg"><path d=3D"M2.656 17.344c-1.016-1.015=
-1.15-2.75-.313-4.925.325-.825.73-1.617 1.205-2.365L3.582 10l-.033-.054c-.5=
-.799-.91-1.596-1.206-2.365-.836-2.175-.703-3.91.313-4.926.56-.56 1.364-.86=
2.335-.86 1.425 0 3.168.636 4.957 1.756l.053.034.053-.034c1.79-1.12 3.532-=
1.757 4.957-1.757.972 0 1.776.3 2.335.86 1.014 1.015 1.148 2.752.312 4.926a=
13.892 13.892 0 0 1-1.206 2.365l-.034.054.034.053c.5.8.91 1.596 1.205 2.365=
.837 2.175.704 3.911-.311 4.926-.56.56-1.364.861-2.335.861-1.425 0-3.168-.6=
37-4.957-1.757L10 16.415l-.053.033c-1.79 1.12-3.532 1.757-4.957 1.757-.972 =
0-1.776-.3-2.335-.86zm13.631-4.399c-.187-.488-.429-.988-.71-1.492l-.075-.13=
2-.092.12a22.075 22.075 0 0 1-3.968 3.968l-.12.093.132.074c1.308.734 2.559 =
1.162 3.556 1.162.563 0 1.006-.138 1.298-.43.3-.3.436-.774.428-1.346-.008-.=
575-.159-1.264-.449-2.017zm-6.345 1.65l.058.042.058-.042a19.881 19.881 0 0 =
0 4.551-4.537l.043-.058-.043-.058a20.123 20.123 0 0 0-2.093-2.458 19.732 19=
.732 0 0 0-2.458-2.08L10 5.364l-.058.042A19.883 19.883 0 0 0 5.39 9.942L5.3=
48 10l.042.059c.631.874 1.332 1.695 2.094 2.457a19.74 19.74 0 0 0 2.458 2.0=
8zm6.366-10.902c-.293-.293-.736-.431-1.298-.431-.998 0-2.248.429-3.556 1.16=
3l-.132.074.12.092a21.938 21.938 0 0 1 3.968 3.968l.092.12.074-.132c.282-.5=
04.524-1.004.711-1.492.29-.753.442-1.442.45-2.017.007-.572-.129-1.045-.429-=
1.345zM3.712 7.055c.202.514.44 1.013.712 1.493l.074.13.092-.119a21.94 21.94=
0 0 1 3.968-3.968l.12-.092-.132-.074C7.238 3.69 5.987 3.262 4.99 3.262c-.5=
63 0-1.006.138-1.298.43-.3.301-.436.774-.428 1.346.007.575.159 1.264.448 2.=
017zm0 5.89c-.29.753-.44 1.442-.448 2.017-.008.572.127 1.045.428 1.345.293.=
293.736.431 1.298.431.997 0 2.247-.428 3.556-1.162l.131-.074-.12-.093a21.94=
21.94 0 0 1-3.967-3.968l-.093-.12-.074.132a11.712 11.712 0 0 0-.71 1.492z"=
fill=3D"currentColor" stroke=3D"currentColor" stroke-width=3D".1"></path><=
path d=3D"M10.706 11.704A1.843 1.843 0 0 1 8.155 10a1.845 1.845 0 1 1 2.551=
1.704z" fill=3D"currentColor" stroke=3D"currentColor" stroke-width=3D".2">=
</path></svg></div>Thought for 19 seconds<div class=3D"ds-icon f4262477" st=
yle=3D"font-size: 10px; width: 10px; height: 10px; transform: rotate(180deg=
);"><svg width=3D"10" height=3D"6" viewBox=3D"0 0 10 6" fill=3D"none" xmlns=
=3D"http://www.w3.org/2000/svg"><path d=3D"M5.786 4.167L2.765 1.259c-.416-.=
4-.985-.482-1.273-.183-.287.298-.183.864.233 1.264l3.021 2.908c.416.4.986.4=
82 1.273.184.287-.299.183-.865-.233-1.265z" fill=3D"currentColor"></path><p=
ath d=3D"M8.197 1.206L5.288 4.208c-.4.413-.484.982-.187 1.27.298.289.864.18=
7 1.265-.227L9.274 2.25c.401-.414.485-.983.187-1.271-.297-.288-.863-.187-1.=
264.227z" fill=3D"currentColor"></path></svg></div></div><div class=3D"e167=
5d8b"><div class=3D"ecc93a3b"></div><p class=3D"ba94db8a">Okay, I need to s=
tyle the provided HTML section in an Islamic style and make it use the full=
width of the screen. Let me start by understanding the user's requirements=
.</p><p class=3D"ba94db8a"></p><p class=3D"ba94db8a">First, the Islamic sty=
le usually involves geometric patterns, calligraphy, and specific colors li=
ke gold, green, and deep blues. So I'll choose a color scheme that reflects=
that. Maybe a dark blue background with gold accents.</p><p class=3D"ba94d=
b8a"></p><p class=3D"ba94db8a">Next, full width means the section should sp=
an 100% of the viewport width. I'll set the body's margin and padding to ze=
ro to eliminate any default spacing. The section itself should have width: =
100%, and maybe a max-width to prevent stretching on very large screens, bu=
t the user wants full width, so perhaps no max-width.</p><p class=3D"ba94db=
8a"></p><p class=3D"ba94db8a">The text is in Arabic, so the font should be =
appropriate. I'll use 'Amiri' or 'Scheherazade' from Google Fonts for tradi=
tional look. Also, right-to-left text alignment might be needed, but the cu=
rrent HTML doesn't have dir=3D"rtl", so maybe set direction: rtl in CSS.</p=
><p class=3D"ba94db8a"></p><p class=3D"ba94db8a">For the layout, the conten=
t should be centered. Using flexbox on the body to center the section verti=
cally and horizontally. The section's content can be aligned with text-alig=
n: center.</p><p class=3D"ba94db8a"></p><p class=3D"ba94db8a">The daily quo=
te box needs to stand out. Maybe a border with Islamic patterns. Since CSS =
doesn't support complex patterns directly, using a border image or a subtle=
background with a geometric design. Alternatively, a gold border with some=
padding and a shadow effect.</p><p class=3D"ba94db8a"></p><p class=3D"ba94=
db8a">Adding decorative elements like crescent moons or stars using pseudo-=
elements. For example, before and after the section with position absolute =
to place them on the sides. Using Unicode symbols or custom SVGs.</p><p cla=
ss=3D"ba94db8a"></p><p class=3D"ba94db8a">Animations could enhance the look=
. A fade-in effect on load for the text. Also, a subtle pulse animation on =
the quote box to draw attention.</p><p class=3D"ba94db8a"></p><p class=3D"b=
a94db8a">Responsive design is important. Ensuring that on mobile devices, t=
he padding and font sizes adjust. Using media queries to handle smaller scr=
eens.</p><p class=3D"ba94db8a"></p><p class=3D"ba94db8a">Testing the code t=
o make sure it works across browsers. Including the Google Fonts link in th=
e head. Checking that the RTL text is properly aligned and the layout doesn=
't break on different screen sizes.</p><p class=3D"ba94db8a"></p><p class=
=3D"ba94db8a">Finally, making sure all elements are styled cohesively with =
the chosen color scheme and that the Islamic aesthetic is consistent throug=
hout the section.</p></div></div><div class=3D"ds-markdown ds-markdown--blo=
ck" style=3D"--ds-md-zoom: 1.143;"><p>(Due to technical issues, the search =
service is temporarily unavailable.)</p><p>Voici une stylisation islamique =
avec des motifs g=C3=A9om=C3=A9triques, des couleurs traditionnelles et une=
mise en page pleine largeur :</p><div class=3D"md-code-block"><div class=
=3D"md-code-block-banner-wrap"><div class=3D"md-code-block-banner"><div cla=
ss=3D"md-code-block-infostring">html</div><div class=3D"md-code-block-actio=
n"><div class=3D"ds-markdown-code-copy-button">Copy</div></div></div></div>=
<pre><span class=3D"token tag"><span class=3D"token tag"><span class=3D"tok=
en punctuation"><</span>style</span><span class=3D"token punctuation">&g=
t;</span></span>
@import url('https://fonts.googleapis.com/css2?family=3DAmiri&family=3D=
Scheherazade+New&display=3Dswap');
body {
margin: 0;
padding: 0;
background: #0a2e38;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Scheherazade New', serif;
}
#accueil {
width: 100%;
padding: 4rem 2rem;
text-align: center;
background:=20
linear-gradient(45deg, rgba(16, 56, 61, 0.8), rgba(5, 22, 26, 0.9))=
,
url('data:image/svg+xml,<span class=3D"token tag"><span class=3D"to=
ken tag"><span class=3D"token punctuation"><</span>svg</span> <span clas=
s=3D"token attr-name">viewBox</span><span class=3D"token attr-value"><span =
class=3D"token punctuation attr-equals">=3D</span><span class=3D"token punc=
tuation">"</span>0 0 100 100<span class=3D"token punctuation">"</span></spa=
n> <span class=3D"token attr-name">xmlns</span><span class=3D"token attr-va=
lue"><span class=3D"token punctuation attr-equals">=3D</span><span class=3D=
"token punctuation">"</span>http://www.w3.org/2000/svg<span class=3D"token =
punctuation">"</span></span><span class=3D"token punctuation">></span></=
span><span class=3D"token tag"><span class=3D"token tag"><span class=3D"tok=
en punctuation"><</span>rect</span> <span class=3D"token attr-name">widt=
h</span><span class=3D"token attr-value"><span class=3D"token punctuation a=
ttr-equals">=3D</span><span class=3D"token punctuation">"</span>100<span cl=
ass=3D"token punctuation">"</span></span> <span class=3D"token attr-name">h=
eight</span><span class=3D"token attr-value"><span class=3D"token punctuati=
on attr-equals">=3D</span><span class=3D"token punctuation">"</span>100<spa=
n class=3D"token punctuation">"</span></span> <span class=3D"token attr-nam=
e">fill</span><span class=3D"token attr-value"><span class=3D"token punctua=
tion attr-equals">=3D</span><span class=3D"token punctuation">"</span>%230a=
2e38<span class=3D"token punctuation">"</span></span><span class=3D"token p=
unctuation">/></span></span><span class=3D"token tag"><span class=3D"tok=
en tag"><span class=3D"token punctuation"><</span>path</span> <span clas=
s=3D"token attr-name">d</span><span class=3D"token attr-value"><span class=
=3D"token punctuation attr-equals">=3D</span><span class=3D"token punctuati=
on">"</span>M50 0L100 50L50 100L0 50Z<span class=3D"token punctuation">"</s=
pan></span> <span class=3D"token attr-name">fill</span><span class=3D"token=
attr-value"><span class=3D"token punctuation attr-equals">=3D</span><span =
class=3D"token punctuation">"</span>%23175c63<span class=3D"token punctuati=
on">"</span></span> <span class=3D"token attr-name">opacity</span><span cla=
ss=3D"token attr-value"><span class=3D"token punctuation attr-equals">=3D</=
span><span class=3D"token punctuation">"</span>0.3<span class=3D"token punc=
tuation">"</span></span><span class=3D"token punctuation">/></span></spa=
n><span class=3D"token tag"><span class=3D"token tag"><span class=3D"token =
punctuation"></</span>svg</span><span class=3D"token punctuation">></=
span></span>');
position: relative;
color: #e4d8b4;
box-shadow: 0 0 50px rgba(0,0,0,0.3);
}
#accueil h2 {
font-family: 'Amiri', sans-serif;
font-size: 3.5em;
margin-bottom: 1.5rem;
color: #d4af37;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
position: relative;
animation: fadeIn 2s ease-in;
}
#accueil p {
font-size: 1.8em;
line-height: 1.6;
max-width: 800px;
margin: 0 auto 2rem;
direction: rtl;
}
.quote-box {
background: rgba(10, 46, 56, 0.9);
padding: 2rem;
margin: 2rem auto;
width: 80%;
border: 2px solid #d4af37;
border-radius: 10px;
position: relative;
box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
.quote-box:before {
content: "=EF=B7=BD";
font-family: 'Amiri';
position: absolute;
top: -20px;
left: 50%;
transform: translateX(-50%);
background: #0a2e38;
padding: 0 1rem;
color: #d4af37;
font-size: 1.5em;
}
#quote {
font-size: 1.5em;
direction: rtl;
font-style: italic;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
/* D=C3=A9coration islamique */
#accueil:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 15px;
background: repeating-linear-gradient(
45deg,
#d4af37,
#d4af37 20px,
#0a2e38 20px,
#0a2e38 40px
);
}
@media (max-width: 768px) {
#accueil h2 { font-size: 2.5em; }
#accueil p { font-size: 1.4em; }
.quote-box { width: 95%; }
}
<span class=3D"token tag"><span class=3D"token tag"><span class=3D"token pu=
nctuation"></</span>style</span><span class=3D"token punctuation">></=
span></span>
<span class=3D"token tag"><span class=3D"token tag"><span class=3D"token pu=
nctuation"><</span>section</span> <span class=3D"token attr-name">id</sp=
an><span class=3D"token attr-value"><span class=3D"token punctuation attr-e=
quals">=3D</span><span class=3D"token punctuation">"</span>accueil<span cla=
ss=3D"token punctuation">"</span></span><span class=3D"token punctuation">&=
gt;</span></span>
<span class=3D"token tag"><span class=3D"token tag"><span class=3D"toke=
n punctuation"><</span>h2</span><span class=3D"token punctuation">></=
span></span>=D9=85=D8=B1=D8=AD=D8=A8=D8=A7 =D8=A8=D9=83=D9=85 =D9=81=D9=8A =
=D8=B1=D8=AD=D8=A7=D8=A8 =D8=B1=D9=85=D8=B6=D8=A7=D9=86<span class=3D"token=
tag"><span class=3D"token tag"><span class=3D"token punctuation"></</sp=
an>h2</span><span class=3D"token punctuation">></span></span>
<span class=3D"token tag"><span class=3D"token tag"><span class=3D"toke=
n punctuation"><</span>p</span><span class=3D"token punctuation">></s=
pan></span>=D9=87=D8=B0=D8=A7 =D8=A7=D9=84=D9=85=D9=88=D9=82=D8=B9 =D9=8A=
=D8=B1=D8=A7=D9=81=D9=82=D9=83=D9=85 =D8=AE=D9=84=D8=A7=D9=84 =D8=A7=D9=84=
=D8=B4=D9=87=D8=B1 =D8=A7=D9=84=D9=81=D8=B6=D9=8A=D9=84 =D8=A8=D9=85=D9=88=
=D8=A7=D8=B1=D8=AF =D8=A5=D8=B3=D9=84=D8=A7=D9=85=D9=8A=D8=A9 =D8=B1=D9=85=
=D8=B6=D8=A7=D9=86 =D9=85=D8=A8=D8=A7=D8=B1=D9=83 =D9=84=D9=84=D8=AC=D9=85=
=D9=8A=D8=B9 <span class=3D"token tag"><span class=3D"token tag"><span cla=
ss=3D"token punctuation"><</span>br</span><span class=3D"token punctuati=
on">></span></span>=D9=84=D8=A7 =D8=AA=D9=86=D8=B3=D9=88=D9=86=D8=A7 =D9=
=85=D9=86 =D8=B5=D8=A7=D9=84=D8=AD =D8=AF=D8=B9=D8=A7=D8=A6=D9=83=D9=85<spa=
n class=3D"token tag"><span class=3D"token tag"><span class=3D"token punctu=
ation"></</span>p</span><span class=3D"token punctuation">></span></s=
pan>
<span class=3D"token tag"><span class=3D"token tag"><span class=3D"toke=
n punctuation"><</span>div</span> <span class=3D"token attr-name">id</sp=
an><span class=3D"token attr-value"><span class=3D"token punctuation attr-e=
quals">=3D</span><span class=3D"token punctuation">"</span>daily-quote<span=
class=3D"token punctuation">"</span></span> <span class=3D"token attr-name=
">class</span><span class=3D"token attr-value"><span class=3D"token punctua=
tion attr-equals">=3D</span><span class=3D"token punctuation">"</span>quote=
-box<span class=3D"token punctuation">"</span></span><span class=3D"token p=
unctuation">></span></span>
<span class=3D"token tag"><span class=3D"token tag"><span class=3D"=
token punctuation"><</span>h3</span><span class=3D"token punctuation">&g=
t;</span></span><span class=3D"token tag"><span class=3D"token tag"><span c=
lass=3D"token punctuation"></</span>h3</span><span class=3D"token punctu=
ation">></span></span>
<span class=3D"token tag"><span class=3D"token tag"><span class=3D"=
token punctuation"><</span>p</span> <span class=3D"token attr-name">id</=
span><span class=3D"token attr-value"><span class=3D"token punctuation attr=
-equals">=3D</span><span class=3D"token punctuation">"</span>quote<span cla=
ss=3D"token punctuation">"</span></span><span class=3D"token punctuation">&=
gt;</span></span><span class=3D"token tag"><span class=3D"token tag"><span =
class=3D"token punctuation"></</span>p</span><span class=3D"token punctu=
ation">></span></span>
<span class=3D"token tag"><span class=3D"token tag"><span class=3D"toke=
n punctuation"></</span>div</span><span class=3D"token punctuation">>=
</span></span>
<span class=3D"token tag"><span class=3D"token tag"><span class=3D"token pu=
nctuation"></</span>section</span><span class=3D"token punctuation">>=
</span></span></pre><div class=3D"md-code-block-footer"><span style=3D"disp=
lay: flex; align-items: center; cursor: pointer; color: rgb(255, 255, 255);=
opacity: 1; gap: 6px;"><div class=3D"ds-icon" style=3D"font-size: 14px; wi=
dth: 14px; height: 14px; margin-bottom: -1px; margin-top: -1px;"><svg xmlns=
=3D"http://www.w3.org/2000/svg" xmlns:xlink=3D"http://www.w3.org/1999/xlink=
" viewBox=3D"0 0 16 16"><g fill=3D"none"><path d=3D"M6.235 2.192A1.5 1.5 0 =
0 0 4 3.499v9a1.5 1.5 0 0 0 2.235 1.308l8-4.5a1.5 1.5 0 0 0 0-2.615l-8-4.5z=
" fill=3D"currentColor"></path></g></svg></div>Run HTML</span></div></div><=
p>Cette stylisation inclut :</p><ol start=3D"1"><li><p>Des couleurs traditi=
onnelles islamiques (or, vert fonc=C3=A9, bleu nuit)</p></li><li><p>Des mot=
ifs g=C3=A9om=C3=A9triques en arri=C3=A8re-plan</p></li><li><p>Une police a=
rabe =C3=A9l=C3=A9gante (Scheherazade New)</p></li><li><p>Des bordures d=C3=
=A9coratives avec des motifs en lin=C3=A9aire-gradient</p></li><li><p>Des a=
nimations subtiles</p></li><li><p>Une banni=C3=A8re pleine largeur responsi=
ve</p></li><li><p>Des effets d'ombre et de profondeur</p></li><li><p>Un sty=
le de citation avec une basmala d=C3=A9corative</p></li><li><p>Des d=C3=A9c=
orations de bordure islamiques</p></li><li><p>Un design responsive pour les=
mobiles</p></li></ol><p>Les =C3=A9l=C3=A9ments cl=C3=A9s du style islamiqu=
e utilis=C3=A9s :</p><ul><li><p>Calligraphie arabe</p></li><li><p>Motifs g=
=C3=A9om=C3=A9triques</p></li><li><p>Couleurs profondes et dor=C3=A9es</p><=
/li><li><p>Sym=C3=A9trie et =C3=A9quilibre</p></li><li><p>=C3=89l=C3=A9ment=
s d=C3=A9coratifs symboliques</p></li><li><p>Utilisation de versets et form=
ules religieuses en d=C3=A9coration</p></li></ul></div><div class=3D"ds-fle=
x" style=3D"margin-top: 12px; height: 20px; align-items: center; gap: 12px;=
"><div class=3D"ds-flex abe97156" style=3D"align-items: center; gap: 12px;"=
><div class=3D"ds-icon-button" tabindex=3D"0" style=3D"--ds-icon-button-tex=
t-color: #CDD4DF; --ds-icon-button-size: 20px; --ds-icon-button-hover-color=
: #44444D;"><div class=3D"ds-icon" style=3D"font-size: 20px; width: 20px; h=
eight: 20px;"><svg viewBox=3D"0 0 20 20" fill=3D"none" xmlns=3D"http://www.=
w3.org/2000/svg" xmlns:xlink=3D"http://www.w3.org/1999/xlink"><defs><clipPa=
th id=3D"clip1248_20193"><rect id=3D"=E9=8D=A5=E6=83=A7=E7=9C=B0_1" width=
=3D"17.052675" height=3D"17.052441" transform=3D"translate(1.000000 1.00000=
0)" fill=3D"white" fill-opacity=3D"0"></rect></clipPath><clipPath id=3D"cli=
p1257_20794"><rect id=3D"=E5=A4=8D=E5=88=B6" width=3D"20.000000" height=3D"=
20.000000" fill=3D"white" fill-opacity=3D"0"></rect></clipPath></defs><g cl=
ip-path=3D"url(#clip1257_20794)"><g clip-path=3D"url(#clip1248_20193)"><pat=
h id=3D"path" d=3D"M5.03 14.64C4.77 14.64 4.5 14.62 4.24 14.56C3.98 14.51 3=
.73 14.43 3.49 14.33C3.24 14.23 3.01 14.1 2.79 13.96C2.57 13.81 2.37 13.64 =
2.18 13.45C1.99 13.26 1.82 13.05 1.68 12.83C1.53 12.61 1.4 12.37 1.3 12.13C=
1.2 11.88 1.13 11.63 1.07 11.36C1.02 11.1 1 10.84 1 10.57L1 5.07C1 4.8 1.02=
4.54 1.07 4.27C1.13 4.01 1.2 3.76 1.3 3.51C1.4 3.26 1.53 3.03 1.68 2.81C1.=
82 2.58 1.99 2.38 2.18 2.19C2.37 2 2.57 1.83 2.79 1.68C3.01 1.53 3.24 1.41 =
3.49 1.31C3.73 1.2 3.98 1.13 4.24 1.07C4.5 1.02 4.77 1 5.03 1L10.49 1C10.75=
1 11.01 1.02 11.27 1.07C11.53 1.13 11.78 1.2 12.03 1.31C12.27 1.41 12.51 1=
.53 12.73 1.68C12.95 1.83 13.15 2 13.34 2.19C13.53 2.38 13.69 2.58 13.84 2.=
81C13.99 3.03 14.11 3.26 14.21 3.51C14.31 3.76 14.39 4.01 14.44 4.27C14.5 4=
.54 14.52 4.8 14.52 5.07L12.94 5.07C12.94 4.91 12.92 4.75 12.89 4.58C12.86 =
4.43 12.81 4.27 12.75 4.12C12.69 3.97 12.61 3.83 12.52 3.69C12.43 3.56 12.3=
3 3.43 12.22 3.32C12.1 3.2 11.98 3.1 11.85 3.01C11.71 2.92 11.57 2.84 11.42=
2.78C11.27 2.72 11.12 2.67 10.96 2.64C10.81 2.61 10.65 2.59 10.49 2.59L5.0=
3 2.59C4.87 2.59 4.71 2.61 4.55 2.64C4.4 2.67 4.24 2.72 4.09 2.78C3.95 2.84=
3.8 2.92 3.67 3.01C3.54 3.1 3.41 3.2 3.3 3.32C3.18 3.43 3.08 3.56 2.99 3.6=
9C2.9 3.83 2.83 3.97 2.77 4.12C2.71 4.27 2.66 4.43 2.63 4.58C2.6 4.75 2.58 =
4.91 2.58 5.07L2.58 10.57C2.58 10.73 2.6 10.89 2.63 11.05C2.66 11.21 2.71 1=
1.37 2.77 11.52C2.83 11.67 2.9 11.81 2.99 11.94C3.08 12.08 3.18 12.2 3.3 12=
.32C3.41 12.43 3.54 12.54 3.67 12.63C3.8 12.72 3.95 12.79 4.09 12.86C4.24 1=
2.92 4.4 12.96 4.55 13C4.71 13.03 4.87 13.04 5.03 13.04L5.03 14.64Z" fill=
=3D"currentColor" fill-opacity=3D"1.000000" fill-rule=3D"evenodd"></path></=
g><path id=3D"path" d=3D"M14.75 18.91L9.3 18.91C9.03 18.91 8.77 18.88 8.51 =
18.83C8.25 18.78 8 18.7 7.75 18.6C7.51 18.49 7.27 18.37 7.05 18.22C6.83 18.=
07 6.63 17.9 6.44 17.71C6.25 17.52 6.09 17.32 5.94 17.1C5.79 16.87 5.67 16.=
64 5.57 16.39C5.47 16.14 5.39 15.89 5.34 15.63C5.28 15.37 5.26 15.1 5.26 14=
.83L5.26 9.33C5.26 9.06 5.28 8.8 5.34 8.54C5.39 8.28 5.47 8.02 5.57 7.77C5.=
67 7.53 5.79 7.29 5.94 7.07C6.09 6.85 6.25 6.64 6.44 6.45C6.63 6.26 6.83 6.=
09 7.05 5.95C7.27 5.8 7.51 5.67 7.75 5.57C8 5.47 8.25 5.39 8.51 5.34C8.77 5=
.29 9.03 5.26 9.3 5.26L14.75 5.26C15.01 5.26 15.28 5.29 15.54 5.34C15.8 5.3=
9 16.05 5.47 16.29 5.57C16.54 5.67 16.77 5.8 16.99 5.95C17.21 6.09 17.41 6.=
26 17.6 6.45C17.79 6.64 17.96 6.85 18.1 7.07C18.25 7.29 18.37 7.53 18.48 7.=
77C18.58 8.02 18.65 8.28 18.71 8.54C18.76 8.8 18.78 9.06 18.78 9.33L18.78 1=
4.83C18.78 15.1 18.76 15.37 18.71 15.63C18.65 15.89 18.58 16.14 18.48 16.39=
C18.37 16.64 18.25 16.87 18.1 17.1C17.96 17.32 17.79 17.52 17.6 17.71C17.41=
17.9 17.21 18.07 16.99 18.22C16.77 18.37 16.54 18.49 16.29 18.6C16.05 18.7=
15.8 18.78 15.54 18.83C15.28 18.88 15.01 18.91 14.75 18.91ZM9.3 6.86C9.13 =
6.86 8.97 6.87 8.82 6.91C8.66 6.94 8.51 6.98 8.36 7.05C8.21 7.11 8.07 7.18 =
7.93 7.28C7.8 7.37 7.68 7.47 7.56 7.58C7.45 7.7 7.35 7.82 7.26 7.96C7.17 8.=
09 7.09 8.24 7.03 8.38C6.97 8.54 6.92 8.69 6.89 8.85C6.86 9.01 6.84 9.17 6.=
84 9.33L6.84 14.83C6.84 15 6.86 15.16 6.89 15.32C6.92 15.48 6.97 15.63 7.03=
15.78C7.09 15.93 7.17 16.07 7.26 16.21C7.35 16.34 7.45 16.47 7.56 16.58C7.=
68 16.7 7.8 16.8 7.93 16.89C8.07 16.98 8.21 17.06 8.36 17.12C8.51 17.18 8.6=
6 17.23 8.82 17.26C8.97 17.29 9.13 17.31 9.3 17.31L14.75 17.31C14.91 17.31 =
15.07 17.29 15.23 17.26C15.38 17.23 15.54 17.18 15.69 17.12C15.83 17.06 15.=
98 16.98 16.11 16.89C16.24 16.8 16.37 16.7 16.48 16.58C16.59 16.47 16.7 16.=
34 16.79 16.21C16.87 16.07 16.95 15.93 17.01 15.78C17.07 15.63 17.12 15.48 =
17.15 15.32C17.18 15.16 17.2 15 17.2 14.83L17.2 9.33C17.2 9.17 17.18 9.01 1=
7.15 8.85C17.12 8.69 17.07 8.54 17.01 8.38C16.95 8.24 16.87 8.09 16.79 7.96=
C16.7 7.82 16.59 7.7 16.48 7.58C16.37 7.47 16.24 7.37 16.11 7.28C15.98 7.19=
15.83 7.11 15.69 7.05C15.54 6.98 15.38 6.94 15.23 6.91C15.07 6.87 14.91 6.=
86 14.75 6.86L9.3 6.86Z" fill=3D"currentColor" fill-opacity=3D"1.000000" fi=
ll-rule=3D"nonzero"></path></g></svg></div></div><div class=3D"ds-icon-butt=
on" tabindex=3D"0" style=3D"--ds-icon-button-text-color: #CDD4DF; --ds-icon=
-button-size: 20px; --ds-icon-button-hover-color: #44444D;"><div class=3D"d=
s-icon" style=3D"font-size: 20px; width: 20px; height: 20px;"><svg viewBox=
=3D"0 0 20 20" fill=3D"none" xmlns=3D"http://www.w3.org/2000/svg" xmlns:xli=
nk=3D"http://www.w3.org/1999/xlink"><defs><clipPath id=3D"clip1258_20811"><=
rect id=3D"=E9=87=8D=E6=96=B0=E7=94=9F=E6=88=90" width=3D"20.000000" height=
=3D"20.000000" fill=3D"white" fill-opacity=3D"0"></rect></clipPath></defs><=
rect id=3D"=E9=87=8D=E6=96=B0=E7=94=9F=E6=88=90" width=3D"20.000000" height=
=3D"20.000000" fill=3D"#FFFFFF" fill-opacity=3D"0"></rect><g clip-path=3D"u=
rl(#clip1258_20811)"><path id=3D"path" d=3D"M17.01 7.63L13.98 7.62C13.88 7.=
62 13.79 7.6 13.7 7.56C13.62 7.52 13.54 7.47 13.47 7.4C13.4 7.33 13.35 7.25=
13.32 7.16C13.28 7.07 13.26 6.98 13.26 6.88C13.26 6.79 13.28 6.69 13.32 6.=
6C13.35 6.51 13.4 6.43 13.47 6.36C13.54 6.3 13.62 6.24 13.7 6.21C13.79 6.17=
13.88 6.15 13.98 6.15L15.57 6.16C15.67 6.16 15.76 6.14 15.85 6.1C15.94 6.0=
6 16.01 6.01 16.08 5.94C16.15 5.87 16.2 5.79 16.23 5.7C16.27 5.61 16.29 5.5=
2 16.29 5.42L16.3 3.89C16.3 3.79 16.32 3.7 16.36 3.61C16.39 3.52 16.44 3.44=
16.51 3.37C16.58 3.3 16.66 3.25 16.74 3.21C16.83 3.17 16.92 3.16 17.02 3.1=
6C17.11 3.16 17.2 3.17 17.29 3.21C17.38 3.25 17.46 3.3 17.52 3.37C17.59 3.4=
4 17.64 3.52 17.68 3.61C17.71 3.7 17.73 3.79 17.73 3.89L17.72 6.9C17.72 7 1=
7.71 7.09 17.67 7.18C17.63 7.27 17.58 7.34 17.52 7.41C17.45 7.48 17.37 7.53=
17.29 7.57C17.2 7.61 17.11 7.63 17.01 7.63Z" fill=3D"currentColor" fill-op=
acity=3D"1.000000" fill-rule=3D"nonzero"></path><path id=3D"path" d=3D"M2.3=
1 16.29L2.32 13.3C2.32 13.21 2.34 13.11 2.37 13.02C2.41 12.93 2.46 12.85 2.=
53 12.78C2.6 12.71 2.67 12.66 2.76 12.62C2.85 12.58 2.94 12.56 3.03 12.56L6=
.07 12.57C6.16 12.57 6.25 12.59 6.34 12.63C6.43 12.67 6.51 12.72 6.57 12.79=
C6.64 12.86 6.69 12.94 6.73 13.03C6.76 13.12 6.78 13.22 6.78 13.32C6.78 13.=
41 6.76 13.51 6.73 13.6C6.69 13.69 6.64 13.77 6.57 13.84C6.51 13.91 6.43 13=
.96 6.34 14C6.25 14.04 6.16 14.06 6.07 14.06L4.47 14.05C4.38 14.05 4.29 14.=
07 4.2 14.11C4.11 14.15 4.03 14.2 3.97 14.27C3.9 14.34 3.85 14.42 3.81 14.5=
1C3.78 14.6 3.76 14.7 3.76 14.8L3.75 16.29C3.75 16.39 3.73 16.48 3.69 16.58=
C3.65 16.67 3.6 16.75 3.54 16.82C3.47 16.89 3.39 16.94 3.3 16.98C3.22 17.01=
3.13 17.03 3.03 17.03C2.94 17.03 2.85 17.02 2.76 16.98C2.67 16.94 2.59 16.=
89 2.52 16.82C2.46 16.75 2.4 16.67 2.37 16.58C2.33 16.49 2.31 16.39 2.31 16=
.29Z" fill=3D"currentColor" fill-opacity=3D"1.000000" fill-rule=3D"nonzero"=
></path><path id=3D"path" d=3D"M9.88 18.01C9.51 18.01 9.15 17.99 8.79 17.94=
C8.42 17.89 8.07 17.82 7.71 17.73C7.36 17.63 7.02 17.51 6.68 17.37C6.34 17.=
23 6.02 17.07 5.7 16.89C5.39 16.7 5.09 16.5 4.8 16.28C4.52 16.05 4.25 15.81=
3.99 15.55C3.74 15.29 3.5 15.02 3.29 14.73C3.07 14.44 2.88 14.13 2.7 13.82=
L4.15 13.05C4.32 13.35 4.51 13.64 4.72 13.91C4.93 14.18 5.17 14.43 5.42 14.=
66C5.67 14.9 5.94 15.11 6.23 15.3C6.52 15.49 6.83 15.66 7.14 15.81C7.46 15.=
95 7.78 16.07 8.12 16.16C8.45 16.25 8.8 16.32 9.14 16.36C9.49 16.39 9.83 16=
.4 10.18 16.39C10.53 16.37 10.87 16.33 11.22 16.26C11.56 16.19 11.89 16.09 =
12.21 15.97C12.54 15.84 12.85 15.7 13.15 15.53C13.45 15.35 13.74 15.16 14.0=
1 14.94C14.28 14.72 14.53 14.49 14.76 14.23C14.99 13.97 15.2 13.7 15.38 13.=
41C15.57 13.12 15.73 12.82 15.87 12.5C16 12.19 16.11 11.87 16.2 11.53C16.28=
11.2 16.34 10.87 16.36 10.52C16.37 10.42 16.4 10.33 16.44 10.24C16.48 10.1=
5 16.54 10.07 16.61 10C16.69 9.93 16.77 9.87 16.86 9.84C16.96 9.8 17.05 9.7=
7 17.16 9.77C17.27 9.77 17.38 9.79 17.49 9.83C17.6 9.87 17.7 9.94 17.78 10.=
02C17.86 10.1 17.92 10.2 17.96 10.3C18 10.41 18.01 10.52 18 10.64C17.98 10.=
89 17.95 11.13 17.91 11.38C17.86 11.62 17.81 11.87 17.74 12.11C17.68 12.35 =
17.6 12.58 17.51 12.82C17.42 13.05 17.32 13.28 17.21 13.5C17.1 13.73 16.98 =
13.95 16.85 14.16C16.71 14.37 16.57 14.58 16.42 14.78C16.27 14.98 16.11 15.=
17 15.94 15.36C15.77 15.54 15.59 15.72 15.41 15.89C15.22 16.06 15.03 16.22 =
14.83 16.37C14.63 16.52 14.42 16.66 14.2 16.79C13.99 16.93 13.77 17.05 13.5=
4 17.16C13.31 17.27 13.08 17.37 12.85 17.46C12.61 17.55 12.37 17.63 12.13 1=
7.7C11.88 17.77 11.64 17.83 11.39 17.87C11.14 17.92 10.89 17.96 10.63 17.98=
C10.38 18 10.13 18.01 9.88 18.01Z" fill=3D"currentColor" fill-opacity=3D"1.=
000000" fill-rule=3D"nonzero"></path><path id=3D"path" d=3D"M2.85 10.27C2.7=
3 10.28 2.62 10.26 2.51 10.22C2.4 10.17 2.31 10.11 2.23 10.03C2.14 9.95 2.0=
8 9.85 2.04 9.74C2 9.63 1.99 9.52 2 9.41C2.03 8.98 2.1 8.56 2.2 8.15C2.3 7.=
73 2.43 7.33 2.6 6.94C2.76 6.54 2.96 6.16 3.19 5.8C3.41 5.44 3.67 5.1 3.95 =
4.77C4.24 4.45 4.54 4.15 4.88 3.88C5.21 3.6 5.56 3.35 5.93 3.13C6.3 2.91 6.=
69 2.73 7.09 2.57C7.5 2.41 7.91 2.28 8.33 2.19C8.75 2.09 9.18 2.03 9.62 2.0=
1C10.05 1.98 10.48 1.99 10.91 2.03C11.35 2.07 11.77 2.14 12.19 2.25C12.61 2=
.36 13.02 2.5 13.42 2.67C13.81 2.84 14.19 3.04 14.56 3.28C14.92 3.51 15.27 =
3.77 15.59 4.05C15.91 4.34 16.21 4.64 16.48 4.98C16.75 5.31 17 5.66 17.21 6=
.03L15.78 6.83C15.61 6.54 15.42 6.25 15.2 5.99C14.98 5.73 14.74 5.48 14.49 =
5.25C14.23 5.02 13.96 4.82 13.66 4.63C13.37 4.45 13.07 4.29 12.75 4.15C12.4=
4 4.01 12.11 3.9 11.77 3.82C11.44 3.73 11.1 3.67 10.76 3.64C10.41 3.61 10.0=
7 3.6 9.72 3.62C9.37 3.64 9.03 3.69 8.69 3.77C8.36 3.84 8.03 3.94 7.71 4.07=
C7.38 4.2 7.08 4.35 6.78 4.52C6.48 4.7 6.2 4.89 5.94 5.11C5.67 5.33 5.43 5.=
57 5.2 5.83C4.97 6.08 4.77 6.36 4.59 6.65C4.41 6.94 4.25 7.24 4.12 7.55C3.9=
8 7.87 3.88 8.19 3.8 8.52C3.72 8.85 3.66 9.19 3.64 9.53C3.63 9.62 3.6 9.72 =
3.56 9.81C3.52 9.9 3.46 9.98 3.39 10.05C3.32 10.12 3.23 10.17 3.14 10.21C3.=
05 10.25 2.95 10.27 2.85 10.27Z" fill=3D"currentColor" fill-opacity=3D"1.00=
0000" fill-rule=3D"nonzero"></path></g></svg></div></div><div class=3D"ds-i=
con-button" tabindex=3D"0" style=3D"--ds-icon-button-text-color: #CDD4DF; -=
-ds-icon-button-size: 20px; --ds-icon-button-hover-color: #44444D;"><div cl=
ass=3D"ds-icon" style=3D"font-size: 18px; width: 18px; height: 18px;"><svg =
width=3D"18" height=3D"18" viewBox=3D"0 0 18 18" fill=3D"none" xmlns=3D"htt=
p://www.w3.org/2000/svg"><path d=3D"M2.5 18c-.663 0-1.298-.294-1.767-.815A2=
.944 2.944 0 0 1 0 15.222V8.777c0-.737.263-1.443.732-1.964C1.202 6.293 1.83=
7 6 2.5 6s1.299.293 1.768.813A2.94 2.94 0 0 1 5 8.777v6.445c0 .737-.264 1.4=
43-.733 1.963-.469.521-1.104.814-1.767.815zm0-10.308a.934.934 0 0 0-.693.31=
9c-.183.204-.287.48-.287.77v6.445c0 .288.103.565.287.77.184.204.433.319.693=
.32.26-.001.51-.116.693-.32.183-.205.287-.482.287-.77V8.78c0-.143-.025-.285=
-.074-.417a1.105 1.105 0 0 0-.212-.354.981.981 0 0 0-.318-.237.897.897 0 0 =
0-.376-.084v.004z" fill=3D"currentColor"></path><path d=3D"M10.352 18H7.564=
a3.539 3.539 0 0 1-2.519-1.062A3.658 3.658 0 0 1 4 14.378V8.281c0-.884.177-=
1.76.523-2.572l1.911-4.502c.142-.334.371-.622.662-.834A1.949 1.949 0 0 1 9.=
122.21c.32.163.59.411.782.719l.171.271c.194.312.298.673.298 1.041v1.755c0 .=
341.134.669.371.91.238.242.56.378.896.378h2.691a3.64 3.64 0 0 1 2.594 1.092=
A3.76 3.76 0 0 1 18 9.014a7.267 7.267 0 0 1-1.288 4.147l-1.602 2.325a5.84 5=
.84 0 0 1-2.076 1.848 5.735 5.735 0 0 1-2.682.666zM8.245 1.648h-.03a.331.33=
1 0 0 0-.293.212L6.012 6.36a4.882 4.882 0 0 0-.39 1.92v6.095c0 .524.205 1.0=
26.569 1.396.364.37.858.579 1.373.58h2.788c.672-.001 1.335-.166 1.931-.481a=
4.208 4.208 0 0 0 1.495-1.332l1.603-2.324a5.616 5.616 0 0 0 .994-3.201 2.1 =
2.1 0 0 0-.6-1.472 2.031 2.031 0 0 0-1.448-.61h-2.691c-.766-.001-1.5-.31-2.=
042-.861a2.964 2.964 0 0 1-.847-2.075V2.241a.297.297 0 0 0-.046-.16l-.17-.2=
72a.334.334 0 0 0-.286-.16z" fill=3D"currentColor"></path></svg></div></div=
><div class=3D"ds-icon-button" tabindex=3D"0" style=3D"--ds-icon-button-tex=
t-color: #CDD4DF; --ds-icon-button-size: 20px; --ds-icon-button-hover-color=
: #44444D;"><div class=3D"ds-icon" style=3D"font-size: 20px; width: 20px; h=
eight: 20px;"><svg viewBox=3D"0 0 20 20" fill=3D"none" xmlns=3D"http://www.=
w3.org/2000/svg" xmlns:xlink=3D"http://www.w3.org/1999/xlink"><defs><clipPa=
th id=3D"clip1348_20218"><rect id=3D"=E7=82=B9=E8=B8=A90718" width=3D"20.00=
0000" height=3D"20.000000" fill=3D"white" fill-opacity=3D"0"></rect></clipP=
ath></defs><rect id=3D"=E7=82=B9=E8=B8=A90718" width=3D"20.000000" height=
=3D"20.000000" fill=3D"#FFFFFF" fill-opacity=3D"0"></rect><g clip-path=3D"u=
rl(#clip1348_20218)"><path id=3D"path" d=3D"M3.71 13.17C3.53 13.17 3.36 13.=
16 3.18 13.12C3.01 13.09 2.84 13.04 2.67 12.97C2.51 12.9 2.35 12.82 2.2 12.=
72C2.05 12.62 1.92 12.51 1.79 12.38C1.66 12.25 1.55 12.12 1.45 11.97C1.35 1=
1.82 1.27 11.67 1.2 11.5C1.13 11.34 1.08 11.17 1.05 11C1.01 10.82 1 10.65 1=
10.47L1 4.19C1 4.02 1.02 3.84 1.06 3.67C1.09 3.5 1.15 3.33 1.22 3.17C1.29 =
3.01 1.37 2.86 1.47 2.71C1.57 2.57 1.68 2.43 1.81 2.31C1.93 2.19 2.07 2.08 =
2.22 1.98C2.36 1.88 2.52 1.8 2.68 1.74C2.84 1.67 3.01 1.62 3.19 1.59C3.36 1=
.55 3.53 1.54 3.71 1.54C3.89 1.54 4.06 1.55 4.23 1.59C4.41 1.62 4.57 1.67 4=
.74 1.74C4.9 1.8 5.06 1.88 5.2 1.98C5.35 2.08 5.49 2.19 5.61 2.31C5.74 2.43=
5.85 2.57 5.95 2.71C6.05 2.86 6.13 3.01 6.2 3.17C6.27 3.33 6.33 3.5 6.36 3=
.67C6.4 3.84 6.42 4.02 6.42 4.19L6.42 10.47C6.42 10.65 6.41 10.82 6.37 11C6=
.34 11.17 6.28 11.34 6.22 11.5C6.15 11.67 6.06 11.82 5.97 11.97C5.87 12.12 =
5.75 12.25 5.63 12.38C5.5 12.51 5.36 12.62 5.22 12.72C5.07 12.82 4.91 12.9 =
4.75 12.97C4.58 13.04 4.41 13.09 4.24 13.12C4.06 13.16 3.89 13.17 3.71 13.1=
7ZM3.71 3.14C3.57 3.14 3.43 3.16 3.3 3.22C3.17 3.27 3.06 3.35 2.96 3.45C2.8=
6 3.54 2.78 3.66 2.73 3.79C2.67 3.92 2.65 4.05 2.64 4.2L2.64 10.47C2.64 10.=
62 2.66 10.75 2.72 10.89C2.77 11.02 2.85 11.14 2.95 11.24C3.05 11.34 3.16 1=
1.42 3.29 11.48C3.43 11.54 3.57 11.56 3.71 11.56C3.85 11.56 3.99 11.54 4.12=
11.48C4.26 11.42 4.37 11.34 4.47 11.24C4.57 11.14 4.65 11.02 4.7 10.89C4.7=
5 10.75 4.78 10.62 4.77 10.47L4.77 4.2C4.77 4.05 4.75 3.92 4.69 3.79C4.64 3=
.66 4.56 3.54 4.46 3.44C4.36 3.34 4.25 3.27 4.12 3.21C3.99 3.16 3.85 3.14 3=
.71 3.14Z" fill=3D"currentColor" fill-opacity=3D"1.000000" fill-rule=3D"non=
zero"></path><path id=3D"path" d=3D"M9.09 18.95C9.04 18.95 8.99 18.95 8.93 =
18.95C8.75 18.93 8.57 18.89 8.4 18.83C8.23 18.77 8.07 18.69 7.92 18.58C7.78=
18.48 7.64 18.35 7.53 18.21C7.42 18.07 7.32 17.92 7.25 17.75L5.31 13.26C4.=
95 12.44 4.77 11.58 4.77 10.69L4.77 4.61C4.77 4.37 4.8 4.14 4.84 3.9C4.89 3=
.67 4.96 3.45 5.05 3.23C5.14 3.01 5.25 2.8 5.39 2.6C5.52 2.4 5.67 2.22 5.84=
2.05C6.01 1.89 6.19 1.74 6.39 1.61C6.58 1.47 6.79 1.36 7.01 1.27C7.23 1.18=
7.46 1.11 7.69 1.07C7.93 1.02 8.16 1 8.4 1L11.24 1C11.71 1 12.18 1.05 12.6=
4 1.16C13.1 1.28 13.54 1.44 13.97 1.66C14.39 1.88 14.78 2.14 15.13 2.46C15.=
49 2.77 15.8 3.12 16.08 3.5L17.71 5.82C18.13 6.43 18.46 7.08 18.68 7.79C18.=
91 8.5 19.02 9.22 19.02 9.96C19.02 10.21 18.99 10.45 18.95 10.69C18.9 10.93=
18.83 11.16 18.73 11.38C18.64 11.61 18.53 11.82 18.39 12.03C18.25 12.23 18=
.1 12.42 17.92 12.59C17.75 12.76 17.56 12.92 17.36 13.05C17.15 13.19 16.94 =
13.3 16.71 13.4C16.49 13.49 16.25 13.56 16.01 13.61C15.77 13.66 15.53 13.68=
15.28 13.68L12.54 13.68C12.37 13.68 12.21 13.71 12.05 13.78C11.89 13.84 11=
.75 13.94 11.63 14.06C11.51 14.18 11.42 14.32 11.35 14.48C11.29 14.63 11.26=
14.8 11.26 14.97L11.26 16.71C11.25 17.09 11.15 17.43 10.95 17.75L10.78 18.=
02C10.6 18.31 10.36 18.54 10.06 18.7C9.76 18.87 9.43 18.95 9.09 18.95ZM8.4 =
2.64C8.27 2.64 8.14 2.65 8.01 2.68C7.88 2.7 7.76 2.74 7.64 2.79C7.52 2.84 7=
.41 2.9 7.3 2.97C7.19 3.04 7.09 3.12 7 3.21C6.91 3.31 6.83 3.41 6.75 3.51C6=
.68 3.62 6.62 3.73 6.57 3.85C6.52 3.97 6.48 4.1 6.46 4.22C6.43 4.35 6.42 4.=
48 6.42 4.61L6.42 10.69C6.42 11.35 6.55 11.99 6.82 12.6L8.76 17.1C8.82 17.2=
3 8.92 17.3 9.06 17.31C9.2 17.32 9.31 17.26 9.39 17.14L9.56 16.87C9.59 16.8=
3 9.61 16.77 9.61 16.71L9.61 14.96C9.61 14.77 9.63 14.58 9.66 14.39C9.7 14.=
2 9.76 14.02 9.83 13.84C9.9 13.66 10 13.5 10.1 13.34C10.21 13.18 10.33 13.0=
3 10.47 12.89C10.6 12.76 10.75 12.63 10.91 12.53C11.07 12.42 11.24 12.33 11=
.42 12.26C11.6 12.18 11.78 12.13 11.97 12.09C12.16 12.05 12.35 12.03 12.55 =
12.03L15.28 12.03C15.42 12.03 15.56 12.02 15.69 11.99C15.82 11.97 15.96 11.=
93 16.08 11.87C16.21 11.82 16.33 11.76 16.44 11.68C16.56 11.61 16.66 11.52 =
16.76 11.42C16.85 11.33 16.94 11.22 17.02 11.11C17.09 11 17.16 10.88 17.21 =
10.75C17.26 10.62 17.3 10.5 17.33 10.36C17.35 10.23 17.37 10.09 17.37 9.96C=
17.37 9.38 17.28 8.83 17.11 8.28C16.94 7.74 16.69 7.23 16.36 6.76L14.73 4.4=
4C14.53 4.16 14.3 3.91 14.04 3.69C13.79 3.46 13.51 3.27 13.2 3.11C12.9 2.96=
12.58 2.84 12.25 2.76C11.92 2.68 11.58 2.63 11.24 2.63L8.4 2.64Z" fill=3D"=
currentColor" fill-opacity=3D"1.000000" fill-rule=3D"nonzero"></path></g></=
svg></div></div></div><div style=3D"flex: 1 1 0%;"></div></div></div><div c=
lass=3D"fa81"><div class=3D"fbb737a4">prpopose unautre style plus moderne<d=
iv class=3D"ds-flex e0558cb1" style=3D"position: absolute; right: calc(100%=