-
Notifications
You must be signed in to change notification settings - Fork 3
/
wikipedia.csv
We can't make this file beautiful and searchable because it's too large.
2234 lines (2167 loc) · 611 KB
/
wikipedia.csv
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
url,depth,id,description,context,type,tags,firstColumn,lastLine,lastColumn,firstLine,impact,help,helpUrl
https://en.wikipedia.org/wiki/Wikipedia:Introduction,1,html,The “big” element is obsolete. Use CSS instead.,"</td>
<td><big><a hre",error,html,5,56,9,,,,
https://en.wikipedia.org/wiki/Wikipedia:Introduction,1,html,The “cellspacing” attribute on the “table” element is obsolete. Use CSS instead.,"></table>
<table style=""width:100%; margin:auto; background:transparent;"" cellspacing=""0"" cellpadding=""0"" border=""0"">
<tbod",error,html,1,58,107,,,,
https://en.wikipedia.org/wiki/Wikipedia:Introduction,1,html,The “cellpadding” attribute on the “table” element is obsolete. Use CSS instead.,"></table>
<table style=""width:100%; margin:auto; background:transparent;"" cellspacing=""0"" cellpadding=""0"" border=""0"">
<tbod",error,html,1,58,107,,,,
https://en.wikipedia.org/wiki/Wikipedia:Introduction,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"></table>
<table style=""width:100%; margin:auto; background:transparent;"" cellspacing=""0"" cellpadding=""0"" border=""0"">
<tbod",error,html,1,58,107,,,,
https://en.wikipedia.org/wiki/Wikipedia:Introduction,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"tbody><tr>
<td style=""padding:0 .3em; background-color:white; border:solid 2px #A3B1BF; border-bottom: 0; text-align:center; font-weight:bold;"" width=""23.5%""><a cla",error,html,12,60,147,59,,,
https://en.wikipedia.org/wiki/Wikipedia:Introduction,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"</a>
</td>
<td style=""border-bottom:2px solid #A3B1BF"" width=""2%""> ",error,html,6,62,55,61,,,
https://en.wikipedia.org/wiki/Wikipedia:Introduction,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"bsp;
</td>
<td style=""padding:0 .3em; background-color:#CEE0F2; font-size:90%; border:solid 2px #A3B1BF; text-align:center"" width=""23.5%""><a hre",error,html,6,64,127,63,,,
https://en.wikipedia.org/wiki/Wikipedia:Introduction,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"</a>
</td>
<td style=""border-bottom:2px solid #A3B1BF"" width=""2%""> ",error,html,6,66,55,65,,,
https://en.wikipedia.org/wiki/Wikipedia:Introduction,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"bsp;
</td>
<td style=""padding:0 .3em; background-color:#CEE0F2; font-size:90%; border:solid 2px #A3B1BF; text-align:center"" width=""23.5%""><a hre",error,html,6,68,127,67,,,
https://en.wikipedia.org/wiki/Wikipedia:Introduction,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"</a>
</td>
<td style=""border-bottom:2px solid #A3B1BF"" width=""2%""> ",error,html,6,70,55,69,,,
https://en.wikipedia.org/wiki/Wikipedia:Introduction,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"bsp;
</td>
<td style=""padding:0.3em; font-size:90%; background-color:#CEE0F2; border:solid 2px #A3B1BF; text-align:center"" width=""23.5%""><a hre",error,html,6,72,126,71,,,
https://en.wikipedia.org/wiki/Wikipedia:Introduction,1,html,Attribute “videopayload” not allowed on element “div” at this point.,"h:252px;""><div id=""mwe_player_0"" class=""PopUpMediaTransform"" style=""width:250px;"" videopayload=""<div class="mediaContainer" style="width:640px"><video id="mwe_player_1" poster="//upload.wikimedia.org/wikipedia/commons/thumb/8/8b/Great_Feeling.ogv/640px--Great_Feeling.ogv.jpg" controls="" preload="none" autoplay="" style="width:640px;height:360px" class="kskin" data-durationhint="83.17387755102" data-startoffset="0" data-mwtitle="Great_Feeling.ogv" data-mwprovider="wikimediacommons"><source src="//upload.wikimedia.org/wikipedia/commons/transcoded/8/8b/Great_Feeling.ogv/Great_Feeling.ogv.360p.vp9.webm" type="video/webm; codecs=&quot;vp9, opus&quot;" data-title="VP9 (360P)" data-shorttitle="VP9 360P" data-transcodekey="360p.vp9.webm" data-width="640" data-height="360" data-bandwidth="441736" data-framerate="23.976"/><source src="//upload.wikimedia.org/wikipedia/commons/transcoded/8/8b/Great_Feeling.ogv/Great_Feeling.ogv.360p.webm" type="video/webm; codecs=&quot;vp8, vorbis&quot;" data-title="WebM (360P)" data-shorttitle="WebM 360P" data-transcodekey="360p.webm" data-width="640" data-height="360" data-bandwidth="565768" data-framerate="23.976"/><source src="//upload.wikimedia.org/wikipedia/commons/8/8b/Great_Feeling.ogv" type="video/ogg; codecs=&quot;theora, vorbis&quot;" data-title="Original Ogg file, 640 × 360 (2.53 Mbps)" data-shorttitle="Ogg source" data-width="640" data-height="360" data-bandwidth="2525782" data-framerate="23.976"/><source src="//upload.wikimedia.org/wikipedia/commons/transcoded/8/8b/Great_Feeling.ogv/Great_Feeling.ogv.120p.vp9.webm" type="video/webm; codecs=&quot;vp9, opus&quot;" data-title="Lowest bandwidth VP9 (120P)" data-shorttitle="VP9 120P" data-transcodekey="120p.vp9.webm" data-width="214" data-height="120" data-bandwidth="164304" data-framerate="23.976"/><source src="//upload.wikimedia.org/wikipedia/commons/transcoded/8/8b/Great_Feeling.ogv/Great_Feeling.ogv.160p.webm" type="video/webm; codecs=&quot;vp8, vorbis&quot;" data-title="Low bandwidth WebM (160P)" data-shorttitle="WebM 160P" data-transcodekey="160p.webm" data-width="284" data-height="160" data-bandwidth="218648" data-framerate="23.976"/><source src="//upload.wikimedia.org/wikipedia/commons/transcoded/8/8b/Great_Feeling.ogv/Great_Feeling.ogv.180p.vp9.webm" type="video/webm; codecs=&quot;vp9, opus&quot;" data-title="Low bandwidth VP9 (180P)" data-shorttitle="VP9 180P" data-transcodekey="180p.vp9.webm" data-width="320" data-height="180" data-bandwidth="225304" data-framerate="23.976"/><source src="//upload.wikimedia.org/wikipedia/commons/transcoded/8/8b/Great_Feeling.ogv/Great_Feeling.ogv.240p.vp9.webm" type="video/webm; codecs=&quot;vp9, opus&quot;" data-title="Small VP9 (240P)" data-shorttitle="VP9 240P" data-transcodekey="240p.vp9.webm" data-width="426" data-height="240" data-bandwidth="280520" data-framerate="23.976"/><source src="//upload.wikimedia.org/wikipedia/commons/transcoded/8/8b/Great_Feeling.ogv/Great_Feeling.ogv.240p.webm" type="video/webm; codecs=&quot;vp8, vorbis&quot;" data-title="Small WebM (240P)" data-shorttitle="WebM 240P" data-transcodekey="240p.webm" data-width="426" data-height="240" data-bandwidth="320920" data-framerate="23.976"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=ar&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="ar" label="العربية (ar) subtitles" data-dir="rtl"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=bn&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="bn" label="বাংলা (bn) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=cs&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="cs" label="čeština (cs) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=cy&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="cy" label="Cymraeg (cy) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=de&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="de" label="Deutsch (de) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=el&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="el" label="Ελληνικά (el) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=en&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="en" label="English (en) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=es&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="es" label="español (es) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=fi&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="fi" label="suomi (fi) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=fr&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="fr" label="français (fr) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=gl&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="gl" label="galego (gl) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=hu&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="hu" label="magyar (hu) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=it&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="it" label="italiano (it) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=ja&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="ja" label="日本語 (ja) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=mk&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="mk" label="македонски (mk) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=nds&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="nds" label="Plattdüütsch (nds) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=nl&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="nl" label="Nederlands (nl) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=pl&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="pl" label="polski (pl) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=pt-br&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="pt-BR" label="português do Brasil (pt-br) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=pt&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="pt" label="português (pt) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=ru&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="ru" label="русский (ru) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=tr&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="tr" label="Türkçe (tr) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=vi&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="vi" label="Tiếng Việt (vi) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=zh-hans&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="zh-Hans" label="中文(简体) (zh-hans) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AGreat_Feeling.ogv&amp;lang=zh-hant&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="zh-Hant" label="中文(繁體) (zh-hant) subtitles" data-dir="ltr"/></video></div>""><img a",error,html,72,77,12313,,,,
https://en.wikipedia.org/wiki/Wikipedia:Introduction,1,html,The “big” element is obsolete. Use CSS instead.,".<br><br>
<big><b>How",error,html,1,79,5,,,,
https://en.wikipedia.org/wiki/Wikipedia:Introduction,1,html,Attribute “videopayload” not allowed on element “div” at this point.,"h:252px;""><div id=""mwe_player_2"" class=""PopUpMediaTransform"" style=""width:250px;"" videopayload=""<div class="mediaContainer" style="width:400px"><video id="mwe_player_3" poster="//upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Wikipedia_video_tutorial-1-Editing-en.ogv/400px--Wikipedia_video_tutorial-1-Editing-en.ogv.jpg" controls="" preload="none" autoplay="" style="width:400px;height:224px" class="kskin" data-durationhint="196.87473922902" data-startoffset="0" data-mwtitle="Wikipedia_video_tutorial-1-Editing-en.ogv" data-mwprovider="wikimediacommons"><source src="//upload.wikimedia.org/wikipedia/commons/1/1c/Wikipedia_video_tutorial-1-Editing-en.ogv" type="video/ogg; codecs=&quot;theora, vorbis&quot;" data-title="Original Ogg file, 400 × 224 (420 kbps)" data-shorttitle="Ogg source" data-width="400" data-height="224" data-bandwidth="419715" data-framerate="25"/><source src="//upload.wikimedia.org/wikipedia/commons/transcoded/1/1c/Wikipedia_video_tutorial-1-Editing-en.ogv/Wikipedia_video_tutorial-1-Editing-en.ogv.120p.vp9.webm" type="video/webm; codecs=&quot;vp9, opus&quot;" data-title="Lowest bandwidth VP9 (120P)" data-shorttitle="VP9 120P" data-transcodekey="120p.vp9.webm" data-width="214" data-height="120" data-bandwidth="151136" data-framerate="25"/><source src="//upload.wikimedia.org/wikipedia/commons/transcoded/1/1c/Wikipedia_video_tutorial-1-Editing-en.ogv/Wikipedia_video_tutorial-1-Editing-en.ogv.160p.webm" type="video/webm; codecs=&quot;vp8, vorbis&quot;" data-title="Low bandwidth WebM (160P)" data-shorttitle="WebM 160P" data-transcodekey="160p.webm" data-width="286" data-height="160" data-bandwidth="184168" data-framerate="25"/><source src="//upload.wikimedia.org/wikipedia/commons/transcoded/1/1c/Wikipedia_video_tutorial-1-Editing-en.ogv/Wikipedia_video_tutorial-1-Editing-en.ogv.180p.vp9.webm" type="video/webm; codecs=&quot;vp9, opus&quot;" data-title="Low bandwidth VP9 (180P)" data-shorttitle="VP9 180P" data-transcodekey="180p.vp9.webm" data-width="320" data-height="180" data-bandwidth="194144" data-framerate="25"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AWikipedia_video_tutorial-1-Editing-en.ogv&amp;lang=en&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="en" label="English (en) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AWikipedia_video_tutorial-1-Editing-en.ogv&amp;lang=es&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="es" label="español (es) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AWikipedia_video_tutorial-1-Editing-en.ogv&amp;lang=eu&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="eu" label="euskara (eu) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AWikipedia_video_tutorial-1-Editing-en.ogv&amp;lang=id&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="id" label="Bahasa Indonesia (id) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AWikipedia_video_tutorial-1-Editing-en.ogv&amp;lang=mk&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="mk" label="македонски (mk) subtitles" data-dir="ltr"/><track src="https://commons.wikimedia.org/w/api.php?action=timedtext&amp;title=File%3AWikipedia_video_tutorial-1-Editing-en.ogv&amp;lang=pt&amp;trackformat=srt&amp;origin=%2A" kind="subtitles" type="text/x-srt" srclang="pt" label="português (pt) subtitles" data-dir="ltr"/></video></div>""><img a",error,html,72,82,4748,,,,
https://en.wikipedia.org/wiki/Wikipedia:Introduction,1,html,The “big” element is obsolete. Use CSS instead.,"100%"">
<p><big><b>Why",error,html,4,89,8,,,,
https://en.wikipedia.org/wiki/Wikipedia:Introduction,1,region,Ensures all page content is contained by landmarks,,error,"cat.keyboard,best-practice",,,,,moderate,All page content must be contained by landmarks,https://dequeuniversity.com/rules/ta11y/3.4/region?application=Ta11y%20API
https://en.wikipedia.org,0,html,"Bad value “/wiki/Computer_terminal#""Intelligent""_terminals” for attribute “href” on element “a”: Illegal character in fragment: “""” is not allowed.","l-purpose <a href=""/wiki/Computer_terminal#"Intelligent"_terminals"" title=""Computer terminal"">comput",error,html,141,101,234,,,,
https://en.wikipedia.org,0,html,CSS: “max-width”: Too many values or values are not recognized.," 0.5em;"">
<div class=""thumbinner mp-thumb"" style=""background: transparent; border: none; padding: 0; max-width: px;"">
<a hr",error,html,1,118,107,,,,
https://en.wikipedia.org,0,html,Element “style” not allowed as child of element “div” in this context. (Suppressing further errors from this subtree.),"m 0.6em;""><style data-mw-deduplicate=""TemplateStyles:r886190367"">.mw-pa",error,html,58,201,112,,,,
https://en.wikipedia.org,0,html,Bad value “simple” for attribute “lang” on element “span”: The language subtag “simple” is not a valid IANA language part of a language tag.,"rg/wiki/""><span class=""autonym"" title=""Simple English (simple:)"" lang=""simple"">Englis",error,html,72,301,140,,,,
https://en.wikipedia.org,0,region,Ensures all page content is contained by landmarks,,error,"cat.keyboard,best-practice",,,,,moderate,All page content must be contained by landmarks,https://dequeuniversity.com/rules/ta11y/3.4/region?application=Ta11y%20API
https://en.wikipedia.org,0,valid-lang,Ensures lang attributes have valid values,,error,"cat.language,wcag2aa,wcag312",,,,,serious,lang attribute must have a valid value,https://dequeuniversity.com/rules/ta11y/3.4/valid-lang?application=Ta11y%20API
https://en.wikipedia.org/wiki/Main_Page#p-search,1,html,"Bad value “/wiki/Computer_terminal#""Intelligent""_terminals” for attribute “href” on element “a”: Illegal character in fragment: “""” is not allowed.","l-purpose <a href=""/wiki/Computer_terminal#"Intelligent"_terminals"" title=""Computer terminal"">comput",error,html,141,116,234,,,,
https://en.wikipedia.org/wiki/Main_Page#p-search,1,html,CSS: “max-width”: Too many values or values are not recognized.," 0.5em;"">
<div class=""thumbinner mp-thumb"" style=""background: transparent; border: none; padding: 0; max-width: px;"">
<a hr",error,html,1,133,107,,,,
https://en.wikipedia.org/wiki/Main_Page#p-search,1,html,Element “style” not allowed as child of element “div” in this context. (Suppressing further errors from this subtree.),"m 0.6em;""><style data-mw-deduplicate=""TemplateStyles:r886190367"">.mw-pa",error,html,58,216,112,,,,
https://en.wikipedia.org/wiki/Main_Page#p-search,1,html,Bad value “simple” for attribute “lang” on element “span”: The language subtag “simple” is not a valid IANA language part of a language tag.,"rg/wiki/""><span class=""autonym"" title=""Simple English (simple:)"" lang=""simple"">Englis",error,html,72,316,140,,,,
https://en.wikipedia.org/wiki/Main_Page#p-search,1,region,Ensures all page content is contained by landmarks,,error,"cat.keyboard,best-practice",,,,,moderate,All page content must be contained by landmarks,https://dequeuniversity.com/rules/ta11y/3.4/region?application=Ta11y%20API
https://en.wikipedia.org/wiki/Main_Page#p-search,1,valid-lang,Ensures lang attributes have valid values,,error,"cat.language,wcag2aa,wcag312",,,,,serious,lang attribute must have a valid value,https://dequeuniversity.com/rules/ta11y/3.4/valid-lang?application=Ta11y%20API
https://en.wikipedia.org/wiki/Main_Page#mw-head,1,html,"Bad value “/wiki/Computer_terminal#""Intelligent""_terminals” for attribute “href” on element “a”: Illegal character in fragment: “""” is not allowed.","l-purpose <a href=""/wiki/Computer_terminal#"Intelligent"_terminals"" title=""Computer terminal"">comput",error,html,141,116,234,,,,
https://en.wikipedia.org/wiki/Main_Page#mw-head,1,html,CSS: “max-width”: Too many values or values are not recognized.," 0.5em;"">
<div class=""thumbinner mp-thumb"" style=""background: transparent; border: none; padding: 0; max-width: px;"">
<a hr",error,html,1,133,107,,,,
https://en.wikipedia.org/wiki/Main_Page#mw-head,1,html,Element “style” not allowed as child of element “div” in this context. (Suppressing further errors from this subtree.),"m 0.6em;""><style data-mw-deduplicate=""TemplateStyles:r886190367"">.mw-pa",error,html,58,216,112,,,,
https://en.wikipedia.org/wiki/Main_Page#mw-head,1,html,Bad value “simple” for attribute “lang” on element “span”: The language subtag “simple” is not a valid IANA language part of a language tag.,"rg/wiki/""><span class=""autonym"" title=""Simple English (simple:)"" lang=""simple"">Englis",error,html,72,316,140,,,,
https://en.wikipedia.org/wiki/Main_Page#mw-head,1,region,Ensures all page content is contained by landmarks,,error,"cat.keyboard,best-practice",,,,,moderate,All page content must be contained by landmarks,https://dequeuniversity.com/rules/ta11y/3.4/region?application=Ta11y%20API
https://en.wikipedia.org/wiki/Main_Page#mw-head,1,valid-lang,Ensures lang attributes have valid values,,error,"cat.language,wcag2aa,wcag312",,,,,serious,lang attribute must have a valid value,https://dequeuniversity.com/rules/ta11y/3.4/valid-lang?application=Ta11y%20API
https://en.wikipedia.org/wiki/Special:Statistics,1,html,Bad value “simple” for attribute “lang” on element “span”: The language subtag “simple” is not a valid IANA language part of a language tag.,"rg/wiki/""><span class=""autonym"" title=""Simple English (simple:)"" lang=""simple"">Englis",error,html,72,107,140,,,,
https://en.wikipedia.org/wiki/Special:Statistics,1,region,Ensures all page content is contained by landmarks,,error,"cat.keyboard,best-practice",,,,,moderate,All page content must be contained by landmarks,https://dequeuniversity.com/rules/ta11y/3.4/region?application=Ta11y%20API
https://en.wikipedia.org/wiki/Special:Statistics,1,valid-lang,Ensures lang attributes have valid values,,error,"cat.language,wcag2aa,wcag312",,,,,serious,lang attribute must have a valid value,https://dequeuniversity.com/rules/ta11y/3.4/valid-lang?application=Ta11y%20API
https://en.wikipedia.org/wiki/Free_content,1,html,Element “style” not allowed as child of element “span” in this context. (Suppressing further errors from this subtree.),"8""></span><style data-mw-deduplicate=""TemplateStyles:r935243608"">.mw-pa",error,html,1020,200,1074,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1031,202,1112,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,969,204,1050,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1445,206,1526,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,846,208,927,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1591,218,1672,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,623,220,704,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1432,222,1513,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,914,224,995,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","a>)</span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,897,226,978,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","-74830-4""><bdi>978-3-",info,html,833,228,837,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1527,228,1608,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1005,230,1086,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,947,232,1028,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,912,234,993,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","a>)</span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1574,236,1655,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1430,238,1511,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1377,240,1458,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1082,242,1163,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,947,244,1028,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,868,248,949,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1188,250,1269,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1309,252,1390,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1399,254,1480,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,892,256,973,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,705,258,786,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,823,260,904,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,761,262,842,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,941,264,1022,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,930,266,1011,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1236,268,1317,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,715,270,796,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1407,272,1488,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1172,274,1253,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,719,276,800,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,1153,280,1234,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","i>. 2007, <link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""><a hre",error,html,299,281,380,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,The element “a” must not appear as a descendant of an element with the attribute “role=button”.,"d=""false""><a class=""mw-collapsible-text"">show</",error,html,478,284,508,,,,
https://en.wikipedia.org/wiki/Free_content,1,html,The element “a” must not appear as a descendant of an element with the attribute “role=button”.,"d=""false""><a class=""mw-collapsible-text"">show</",error,html,486,363,516,,,,
https://en.wikipedia.org/wiki/Free_content,1,link-name,Ensures links have discernible text,,error,"cat.name-role-value,wcag2a,wcag412,wcag244,section508,section508.22.a",,,,,serious,Links must have discernible text,https://dequeuniversity.com/rules/ta11y/3.4/link-name?application=Ta11y%20API
https://en.wikipedia.org/wiki/Free_content,1,region,Ensures all page content is contained by landmarks,,error,"cat.keyboard,best-practice",,,,,moderate,All page content must be contained by landmarks,https://dequeuniversity.com/rules/ta11y/3.4/region?application=Ta11y%20API
https://en.wikipedia.org/wiki/Free_content,1,aria-allowed-role,Ensures role attribute has an appropriate value for the element,,warning,"cat.aria,best-practice",,,,,minor,ARIA role must be appropriate for the element,https://dequeuniversity.com/rules/ta11y/3.4/aria-allowed-role?application=Ta11y%20API
https://en.wikipedia.org/wiki/Free_content,1,color-contrast,Ensures the contrast between foreground and background colors meets WCAG 2 AA contrast ratio thresholds,,warning,"cat.color,wcag2aa,wcag143",,,,,serious,Elements must have sufficient color contrast,https://dequeuniversity.com/rules/ta11y/3.4/color-contrast?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:Arts,1,html,Element “style” not allowed as child of element “div” in this context. (Suppressing further errors from this subtree.),"le></div>
<style data-mw-deduplicate=""TemplateStyles:r888483065"">.mw-pa",error,html,1,55,55,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,";"">
<div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,74,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,";"">
<div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,74,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,The “big” element is obsolete. Use CSS instead.,"s_Portal""><big>The Ar",error,html,845,74,849,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,The “center” element is obsolete. Use CSS instead.,"left:1em""><center>The <a",error,html,42,78,49,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"mn-left"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,93,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"mn-left"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,93,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,99,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,99,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,106,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,106,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,117,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,117,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,129,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,129,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"n-right"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,141,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"n-right"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,141,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,147,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,147,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,The “center” element is obsolete. Use CSS instead.,"adius:0"">
<center>
<div ",error,html,1,148,8,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,158,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,158,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,199,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,199,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"v>
</div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,256,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"v>
</div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,256,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,273,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,273,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,300,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,300,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"noprint"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,312,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"noprint"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#f9f9ff;margin-bottom:0px;border:solid #aaaaaa;box-sizing:border-box;text-align:center;font-size:100%;background:#444444;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,312,398,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,The “align” attribute on the “table” element is obsolete. Use CSS instead.,"adius:0"">
<table role=""presentation"" class=""noprint"" align=""center"" style=""clear:both; background: transparent; text-align:center; font-size:91%"" cellspacing=""3"" cellpadding=""3"" rules=""none"" border=""0"">
<tbo",error,html,1,313,192,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,The “cellspacing” attribute on the “table” element is obsolete. Use CSS instead.,"adius:0"">
<table role=""presentation"" class=""noprint"" align=""center"" style=""clear:both; background: transparent; text-align:center; font-size:91%"" cellspacing=""3"" cellpadding=""3"" rules=""none"" border=""0"">
<tbo",error,html,1,313,192,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,The “cellpadding” attribute on the “table” element is obsolete. Use CSS instead.,"adius:0"">
<table role=""presentation"" class=""noprint"" align=""center"" style=""clear:both; background: transparent; text-align:center; font-size:91%"" cellspacing=""3"" cellpadding=""3"" rules=""none"" border=""0"">
<tbo",error,html,1,313,192,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,The “rules” attribute on the “table” element is obsolete. Use CSS instead.,"adius:0"">
<table role=""presentation"" class=""noprint"" align=""center"" style=""clear:both; background: transparent; text-align:center; font-size:91%"" cellspacing=""3"" cellpadding=""3"" rules=""none"" border=""0"">
<tbo",error,html,1,313,192,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"adius:0"">
<table role=""presentation"" class=""noprint"" align=""center"" style=""clear:both; background: transparent; text-align:center; font-size:91%"" cellspacing=""3"" cellpadding=""3"" rules=""none"" border=""0"">
<tbo",error,html,1,313,192,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,html,CSS: “color”: Parse Error.,"al:Arts/""><span style=""color:{{{linkcolour}}}"">Sub-pa",error,html,95,387,131,,,,
https://en.wikipedia.org/wiki/Portal:Arts,1,link-name,Ensures links have discernible text,,error,"cat.name-role-value,wcag2a,wcag412,wcag244,section508,section508.22.a",,,,,serious,Links must have discernible text,https://dequeuniversity.com/rules/ta11y/3.4/link-name?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:Arts,1,region,Ensures all page content is contained by landmarks,,error,"cat.keyboard,best-practice",,,,,moderate,All page content must be contained by landmarks,https://dequeuniversity.com/rules/ta11y/3.4/region?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:Arts,1,color-contrast,Ensures the contrast between foreground and background colors meets WCAG 2 AA contrast ratio thresholds,,warning,"cat.color,wcag2aa,wcag143",,,,,serious,Elements must have sufficient color contrast,https://dequeuniversity.com/rules/ta11y/3.4/color-contrast?application=Ta11y%20API
https://en.wikipedia.org/wiki/Encyclopedia,1,html,Element “style” not allowed as child of element “div” in this context. (Suppressing further errors from this subtree.),"h:40%; ;""><style data-mw-deduplicate=""TemplateStyles:r887775652"">.mw-pa",error,html,65,107,119,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,Element “style” not allowed as child of element “div” in this context. (Suppressing further errors from this subtree.),"l>
</div>
<style data-mw-deduplicate=""TemplateStyles:r891577481"">.mw-pa",error,html,1,196,55,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,Element “style” not allowed as child of element “span” in this context. (Suppressing further errors from this subtree.),"8""></span><style data-mw-deduplicate=""TemplateStyles:r935243608"">.mw-pa",error,html,787,200,841,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","-14143-7""><bdi>978-0-",info,html,883,202,887,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1633,202,1714,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","ty Press. <link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""><a hre",error,html,559,204,640,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1337,206,1418,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","-14143-7""><bdi>978-0-",info,html,827,208,831,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1823,208,1904,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","-14143-7""><bdi>978-0-",info,html,707,210,711,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1522,210,1603,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","26260709""><bdi>978022",info,html,519,222,523,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1002,222,1083,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","-03823-3""><bdi>978-1-",info,html,489,224,493,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,950,224,1031,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","21152921""><bdi>978-05",info,html,523,226,527,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1010,226,1091,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”."," 12. <link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""><a hre",error,html,363,228,444,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1013,228,1094,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","-10830-0""><bdi>90-04-",info,html,606,232,610,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""><",error,html,1169,232,1250,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","925913-7""><bdi>978-0-",info,html,533,234,537,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1040,234,1121,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1099,236,1180,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1269,238,1350,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","-14143-7""><bdi>978-0-",info,html,963,240,967,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1952,240,2033,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","829951-6""><bdi>978-0-",info,html,624,242,628,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1195,242,1276,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","02397064""><bdi>978160",info,html,625,248,629,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1233,248,1314,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1118,260,1199,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1009,262,1090,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,866,264,947,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,849,266,930,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""><span ",error,html,1512,268,1593,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,Element “ul” not allowed as child of element “span” in this context. (Suppressing further errors from this subtree.),"es; e.g.:
<ul><li><c",error,html,1,270,4,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li><",error,html,575,270,656,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1035,272,1116,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1300,274,1381,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1245,276,1326,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></span",error,html,1522,278,1603,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”."," 192-197. <link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""><a hre",error,html,573,280,654,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,Element “style” not allowed as child of element “div” in this context. (Suppressing further errors from this subtree.),"pan></h2>
<style data-mw-deduplicate=""TemplateStyles:r886047268"">.mw-pa",error,html,1,284,55,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,645,286,726,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","829951-6""><bdi>978-0-",info,html,317,287,321,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,709,287,790,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","11-799-4""><bdi>978-3-",info,html,413,289,417,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,825,289,906,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","9-6895-1""><bdi>978-1-",info,html,396,290,400,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,1065,290,1146,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,738,291,819,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","-14143-7""><bdi>978-0-",info,html,478,292,482,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,1095,292,1176,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","-08785-9""><bdi>978-0-",info,html,483,293,487,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,1031,293,1112,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","-14143-7""><bdi>978-0-",info,html,556,294,560,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,1289,294,1370,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","4-0256-9""><bdi>978-0-",info,html,413,295,417,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,1043,295,1124,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","4-0467-9""><bdi>978-0-",info,html,400,296,404,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,1017,296,1098,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","-30358-3""><bdi>978-0-",info,html,422,297,426,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,1088,297,1169,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,1761,298,1842,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.",">192–197. <link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""><a hre",error,html,496,299,577,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,762,300,843,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"The “bdi” element is not supported in all browsers. Please be sure to test, and consider using a polyfill.","-65191-2""><bdi>978-0-",info,html,627,301,631,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li><",error,html,1497,301,1578,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,675,330,756,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,665,331,746,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,750,332,831,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,687,333,768,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,674,334,755,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li>
",error,html,677,335,758,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","8""></span><link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r935243608""></li><",error,html,690,336,771,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,Bad value “hyw” for attribute “lang” on element “a”: The language subtag “hyw” is not a valid ISO language part of a language tag.,"wiki-hyw""><a href=""https://hyw.wikipedia.org/wiki/%D5%80%D5%A1%D5%B6%D6%80%D5%A1%D5%A3%D5%AB%D5%BF%D5%A1%D6%80%D5%A1%D5%B6"" title=""Հանրագիտարան – Western Armenian"" lang=""hyw"" hreflang=""hyw"" class=""interlanguage-link-target"">Արեւմտ",error,html,14587,492,14800,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,html,Bad value “hyw” for attribute “hreflang” on element “a”: The language subtag “hyw” is not a valid ISO language part of a language tag.,"wiki-hyw""><a href=""https://hyw.wikipedia.org/wiki/%D5%80%D5%A1%D5%B6%D6%80%D5%A1%D5%A3%D5%AB%D5%BF%D5%A1%D6%80%D5%A1%D5%B6"" title=""Հանրագիտարան – Western Armenian"" lang=""hyw"" hreflang=""hyw"" class=""interlanguage-link-target"">Արեւմտ",error,html,14587,492,14800,,,,
https://en.wikipedia.org/wiki/Encyclopedia,1,link-name,Ensures links have discernible text,,error,"cat.name-role-value,wcag2a,wcag412,wcag244,section508,section508.22.a",,,,,serious,Links must have discernible text,https://dequeuniversity.com/rules/ta11y/3.4/link-name?application=Ta11y%20API
https://en.wikipedia.org/wiki/Encyclopedia,1,region,Ensures all page content is contained by landmarks,,error,"cat.keyboard,best-practice",,,,,moderate,All page content must be contained by landmarks,https://dequeuniversity.com/rules/ta11y/3.4/region?application=Ta11y%20API
https://en.wikipedia.org/wiki/Encyclopedia,1,aria-allowed-role,Ensures role attribute has an appropriate value for the element,,warning,"cat.aria,best-practice",,,,,minor,ARIA role must be appropriate for the element,https://dequeuniversity.com/rules/ta11y/3.4/aria-allowed-role?application=Ta11y%20API
https://en.wikipedia.org/wiki/Encyclopedia,1,color-contrast,Ensures the contrast between foreground and background colors meets WCAG 2 AA contrast ratio thresholds,,warning,"cat.color,wcag2aa,wcag143",,,,,serious,Elements must have sufficient color contrast,https://dequeuniversity.com/rules/ta11y/3.4/color-contrast?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:Geography,1,html,Element “style” not allowed as child of element “div” in this context. (Suppressing further errors from this subtree.),"le></div>
<style data-mw-deduplicate=""TemplateStyles:r888483065"">.mw-pa",error,html,1,55,55,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"l>
</div>
<table width=""100%"" cellpadding=""5"" cellspacing=""6"" style=""background:white; text-align: justify; border-style:ridge; border-width:4px; border-color:#FABD23"">
<tbod",error,html,1,76,158,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “cellpadding” attribute on the “table” element is obsolete. Use CSS instead.,"l>
</div>
<table width=""100%"" cellpadding=""5"" cellspacing=""6"" style=""background:white; text-align: justify; border-style:ridge; border-width:4px; border-color:#FABD23"">
<tbod",error,html,1,76,158,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “cellspacing” attribute on the “table” element is obsolete. Use CSS instead.,"l>
</div>
<table width=""100%"" cellpadding=""5"" cellspacing=""6"" style=""background:white; text-align: justify; border-style:ridge; border-width:4px; border-color:#FABD23"">
<tbod",error,html,1,76,158,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"tbody><tr>
<td width=""55%"" style=""vertical-align:top;padding: 0; margin:0;"">
<div ",error,html,12,78,65,77,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"th:100%"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,80,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"th:100%"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,80,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “big” element is obsolete. Use CSS instead.,"y_Portal""><big>The Ge",error,html,682,80,686,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,Element “style” not allowed as child of element “div” in this context. (Suppressing further errors from this subtree.),"adius:0"">
<style data-mw-deduplicate=""TemplateStyles:r859339374"">.mw-pa",error,html,1,81,55,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"n-left"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,90,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"n-left"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,90,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.," States.
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,93,107,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.," States.
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,93,107,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,104,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,104,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,115,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,115,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"/li></ul>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,123,107,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"/li></ul>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,123,107,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,134,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,134,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,Element “dl” is missing a required child element.,"></a>
<dl><dd><a hre",error,html,5,143,8,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,Element “dd” not allowed as child of element “li” in this context. (Suppressing further errors from this subtree.),"ature</a>
<dd><a hre",error,html,1,148,4,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,Element “dd” not allowed as child of element “li” in this context. (Suppressing further errors from this subtree.),"</a></dd>
<dd><a hre",error,html,1,149,4,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,Element “dd” not allowed as child of element “li” in this context. (Suppressing further errors from this subtree.),"</a></dd>
<dd><a hre",error,html,1,150,4,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,Element “dd” not allowed as child of element “li” in this context. (Suppressing further errors from this subtree.),"</i></dd>
<dd><a hre",error,html,1,151,4,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,Element “dd” not allowed as child of element “li” in this context. (Suppressing further errors from this subtree.),"</a></dd>
<dd><a hre",error,html,1,152,4,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,Element “dd” not allowed as child of element “li” in this context. (Suppressing further errors from this subtree.),"</a></dd>
<dd><a hre",error,html,1,153,4,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,Element “dd” not allowed as child of element “li” in this context. (Suppressing further errors from this subtree.),"</i></dd>
<dd><a hre",error,html,1,154,4,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,Element “dd” not allowed as child of element “li” in this context. (Suppressing further errors from this subtree.),"</a></dd>
<dd><a hre",error,html,1,155,4,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"-right"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,162,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"-right"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,162,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"r memory.
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,165,107,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"r memory.
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,165,107,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,176,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,176,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,180,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,180,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,Element “dl” is missing a required instance of child element “dd”.,"oject</dt></dl>
<ul><",error,html,28,182,32,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,Element “dl” is missing a required instance of child element “dd”.,"jects</dt></dl>
<div ",error,html,33,184,37,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,Element “dl” is missing a required instance of child element “dd”.,"jects</dt></dl>
<ul><",error,html,30,207,34,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “align” attribute on the “div” element is obsolete. Use CSS instead.,"/li></ul>
<div align=""right""><b>Wha",error,html,1,209,19,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"th:100%"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,213,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"th:100%"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,213,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"iv></div>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbod",error,html,1,215,107,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"iv></div>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbod",error,html,1,215,107,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"tbody><tr>
<td style=""text-align:center;"" width=""33%""><small",error,html,12,217,43,216,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"ion.
</p>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,221,107,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"ion.
</p>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,221,107,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"tbody><tr>
<td width=""33%""><div s",error,html,12,224,16,223,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,232,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,232,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “center” element is obsolete. Use CSS instead.,"adius:0"">
<center>
<tabl",error,html,1,233,8,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"
<center>
<table class=""noprint"" border=""0"" style=""text-align:left; padding: 0; margin: 0; background-color:transparent"">
<tbod",error,html,1,234,111,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"</center>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,251,107,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"</center>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,251,107,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,260,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,260,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “align” attribute on the “table” element is obsolete. Use CSS instead.,"adius:0"">
<table align=""center"" cellspacing=""0"" cellpadding=""5"" style=""background-color:transparent;padding:2px;line-height:1.5em;"">
<tbo",error,html,1,261,122,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “cellspacing” attribute on the “table” element is obsolete. Use CSS instead.,"adius:0"">
<table align=""center"" cellspacing=""0"" cellpadding=""5"" style=""background-color:transparent;padding:2px;line-height:1.5em;"">
<tbo",error,html,1,261,122,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “cellpadding” attribute on the “table” element is obsolete. Use CSS instead.,"adius:0"">
<table align=""center"" cellspacing=""0"" cellpadding=""5"" style=""background-color:transparent;padding:2px;line-height:1.5em;"">
<tbo",error,html,1,261,122,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “align” attribute on the “tr” element is obsolete. Use CSS instead.,">
<tbody><tr align=""center"">
<td w",error,html,8,263,26,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"=""center"">
<td width=""33%""><a hre",error,html,27,264,16,263,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"</a>
</td>
<td width=""34%""><a hre",error,html,6,266,16,265,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"</a>
</td>
<td width=""33%""><a hre",error,html,6,268,16,267,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “align” attribute on the “tr” element is obsolete. Use CSS instead.,"</td></tr>
<tr align=""center"">
<td w",error,html,11,270,19,269,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"=""center"">
<td width=""33%""><a hre",error,html,20,271,16,270,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"</a>
</td>
<td width=""34%""><a hre",error,html,6,273,16,272,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"</a>
</td>
<td width=""33%""><a hre",error,html,6,275,16,274,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “align” attribute on the “tr” element is obsolete. Use CSS instead.,"</td></tr>
<tr align=""center"">
<td w",error,html,11,277,19,276,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"=""center"">
<td width=""33%""><a hre",error,html,20,278,16,277,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"</a>
</td>
<td width=""34%""><a hre",error,html,6,280,16,279,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"</a>
</td>
<td width=""33%""><a hre",error,html,6,282,16,281,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “align” attribute on the “tr” element is obsolete. Use CSS instead.,"</td></tr>
<tr align=""center"">
<td w",error,html,11,284,19,283,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"=""center"">
<td width=""33%""><a hre",error,html,20,285,16,284,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"</a>
</td>
<td width=""34%""><a hre",error,html,6,287,16,286,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"</a>
</td>
<td width=""33%""><a hre",error,html,6,289,16,288,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,294,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,294,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,Element “dl” is missing a required instance of child element “dd”.,"rtals</dt></dl>
<ul c",error,html,32,295,36,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,Element “dl” is missing a required instance of child element “dd”.,"rtals</dt></dl>
<ul c",error,html,24,315,28,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,Element “dl” is missing a required instance of child element “dd”.,"rtals</dt></dl>
<ul c",error,html,29,325,33,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,348,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:green;margin-bottom:0px;border:solid #FABD23;box-sizing:border-box;text-align:center;font-size:100%;background:#FFE996;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,348,396,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,html,CSS: “color”: Parse Error.,"ography/""><span style=""color:{{{linkcolour}}}"">Sub-pa",error,html,105,429,141,,,,
https://en.wikipedia.org/wiki/Portal:Geography,1,color-contrast,Ensures the contrast between foreground and background colors meets WCAG 2 AA contrast ratio thresholds,,error,"cat.color,wcag2aa,wcag143",,,,,serious,Elements must have sufficient color contrast,https://dequeuniversity.com/rules/ta11y/3.4/color-contrast?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:Geography,1,definition-list,Ensures <dl> elements are structured correctly,,error,"cat.structure,wcag2a,wcag131",,,,,serious,"<dl> elements must only directly contain properly-ordered <dt> and <dd> groups, <script> or <template> elements",https://dequeuniversity.com/rules/ta11y/3.4/definition-list?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:Geography,1,dlitem,Ensures <dt> and <dd> elements are contained by a <dl>,,error,"cat.structure,wcag2a,wcag131",,,,,serious,<dt> and <dd> elements must be contained by a <dl>,https://dequeuniversity.com/rules/ta11y/3.4/dlitem?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:Geography,1,link-name,Ensures links have discernible text,,error,"cat.name-role-value,wcag2a,wcag412,wcag244,section508,section508.22.a",,,,,serious,Links must have discernible text,https://dequeuniversity.com/rules/ta11y/3.4/link-name?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:Geography,1,region,Ensures all page content is contained by landmarks,,error,"cat.keyboard,best-practice",,,,,moderate,All page content must be contained by landmarks,https://dequeuniversity.com/rules/ta11y/3.4/region?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:Geography,1,color-contrast,Ensures the contrast between foreground and background colors meets WCAG 2 AA contrast ratio thresholds,,warning,"cat.color,wcag2aa,wcag143",,,,,serious,Elements must have sufficient color contrast,https://dequeuniversity.com/rules/ta11y/3.4/color-contrast?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,Element “style” not allowed as child of element “div” in this context. (Suppressing further errors from this subtree.),"le></div>
<style data-mw-deduplicate=""TemplateStyles:r888483065"">.mw-pa",error,html,1,58,55,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"th:100%"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,77,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"th:100%"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,77,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “big” element is obsolete. Use CSS instead.,"s_Portal""><big>The Ma",error,html,860,77,864,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “align” attribute on the “div” element is obsolete. Use CSS instead.,"red.
</p>
<div class=""no print"" align=""right""><b><a ",error,html,1,88,36,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"ft-wide"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,99,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"ft-wide"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,99,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"</tr>
<tr>
<td width=""200"" style=""font-size: 85%; text-align: center;"">The <a",error,html,5,108,60,107,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"day.
</p>
<table width=""100%"" border=""0"" style=""clear:both; padding:0; margin:0; background:transparent;"">
<tbod",error,html,1,114,96,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"day.
</p>
<table width=""100%"" border=""0"" style=""clear:both; padding:0; margin:0; background:transparent;"">
<tbod",error,html,1,114,96,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “align” attribute on the “td” element is obsolete. Use CSS instead.,"tbody><tr>
<td align=""left""><b><a ",error,html,12,116,17,115,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “align” attribute on the “td” element is obsolete. Use CSS instead.,"</b>
</td>
<td align=""right""><b><a ",error,html,6,118,18,117,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div",error,html,1,121,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div",error,html,1,121,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"-narrow"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,135,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"-narrow"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,135,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,160,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,160,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,186,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,186,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"v>
</div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,195,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"v>
</div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,195,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “font-size”: “normal” is not a “font-size” value.,"adius:0"">
<div style=""text-align:center; font-size:normal;"">
<div ",error,html,1,196,50,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “font-size”: “normal” is not a “font-size” value.,"div>
<hr>
<div style=""text-align:center; font-size:normal;"">
<p><a",error,html,1,232,50,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “center” element is obsolete. Use CSS instead.,"p>
</div>
<center><small",error,html,1,236,8,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,241,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,241,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"m -1em;"">
<table width=""100%"" style=""background-color:#fff;margin:auto;"" border=""0"" cellpadding=""3px"" cellspacing=""2px"">
<tbo",error,html,1,243,110,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “cellpadding” attribute on the “table” element is obsolete. Use CSS instead.,"m -1em;"">
<table width=""100%"" style=""background-color:#fff;margin:auto;"" border=""0"" cellpadding=""3px"" cellspacing=""2px"">
<tbo",error,html,1,243,110,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “cellspacing” attribute on the “table” element is obsolete. Use CSS instead.,"m -1em;"">
<table width=""100%"" style=""background-color:#fff;margin:auto;"" border=""0"" cellpadding=""3px"" cellspacing=""2px"">
<tbo",error,html,1,243,110,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"m -1em;"">
<table width=""100%"" style=""background-color:#fff;margin:auto;"" border=""0"" cellpadding=""3px"" cellspacing=""2px"">
<tbo",error,html,1,243,110,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “align” attribute on the “tr” element is obsolete. Use CSS instead.,">
<tbody><tr align=""center"" style=""background-color:tan;"">
<th w",error,html,8,245,56,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “width” attribute on the “th” element is obsolete. Use CSS instead.,"lor:tan;"">
<th width=""25%""><b>Gen",error,html,57,246,16,245,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “width” attribute on the “th” element is obsolete. Use CSS instead.,"</b>
</th>
<th width=""25%""><b>Fou",error,html,6,248,16,247,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “width” attribute on the “th” element is obsolete. Use CSS instead.,"</b>
</th>
<th width=""25%""><b>Num",error,html,6,250,16,249,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “width” attribute on the “th” element is obsolete. Use CSS instead.,"</b>
</th>
<th width=""25%""><b>Dis",error,html,6,252,16,251,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “valign” attribute on the “tr” element is obsolete. Use CSS instead.,"</th></tr>
<tr valign=""top"" align=""left"" style=""background: antiquewhite; font-size: 92%;"">
<td><",error,html,11,255,80,253,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “align” attribute on the “tr” element is obsolete. Use CSS instead.,"</th></tr>
<tr valign=""top"" align=""left"" style=""background: antiquewhite; font-size: 92%;"">
<td><",error,html,11,255,80,253,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “align” attribute on the “tr” element is obsolete. Use CSS instead.,"</td></tr>
<tr align=""center"" style=""background-color:tan;"">
<th w",error,html,11,308,49,307,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “width” attribute on the “th” element is obsolete. Use CSS instead.,"lor:tan;"">
<th width=""25%""><b>Alg",error,html,50,309,16,308,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “width” attribute on the “th” element is obsolete. Use CSS instead.,"</b>
</th>
<th width=""25%""><b>Ana",error,html,6,311,16,310,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “width” attribute on the “th” element is obsolete. Use CSS instead.,"</b>
</th>
<th width=""25%""><b>Geo",error,html,6,313,16,312,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “width” attribute on the “th” element is obsolete. Use CSS instead.,"</b>
</th>
<th width=""25%""><b>App",error,html,6,315,16,314,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “valign” attribute on the “tr” element is obsolete. Use CSS instead.,"</th></tr>
<tr valign=""top"" align=""left"" style=""background: antiquewhite; font-size: 92%;"">
<td><",error,html,11,318,80,316,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “align” attribute on the “tr” element is obsolete. Use CSS instead.,"</th></tr>
<tr valign=""top"" align=""left"" style=""background: antiquewhite; font-size: 92%;"">
<td><",error,html,11,318,80,316,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,397,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,397,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,The “cellpadding” attribute on the “table” element is obsolete. Use CSS instead.,"adius:0"">
<table cellpadding=""2"" style=""margin:auto;"">
<tbo",error,html,1,398,44,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,411,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,411,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “color”: Parse Error.,"ematics/""><span style=""color:{{{linkcolour}}}"">Sub-pa",error,html,109,424,145,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,427,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#503b1e;margin-bottom:0px;border:solid tan;box-sizing:border-box;text-align:center;font-size:100%;background:antiquewhite;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,427,399,,,,
https://en.wikipedia.org/wiki/Portal:Mathematics,1,link-name,Ensures links have discernible text,,error,"cat.name-role-value,wcag2a,wcag412,wcag244,section508,section508.22.a",,,,,serious,Links must have discernible text,https://dequeuniversity.com/rules/ta11y/3.4/link-name?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:Mathematics,1,region,Ensures all page content is contained by landmarks,,error,"cat.keyboard,best-practice",,,,,moderate,All page content must be contained by landmarks,https://dequeuniversity.com/rules/ta11y/3.4/region?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:History,1,html,Element “style” not allowed as child of element “div” in this context. (Suppressing further errors from this subtree.),"le></div>
<style data-mw-deduplicate=""TemplateStyles:r888483065"">.mw-pa",error,html,1,55,55,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"l>
</div>
<table width=""100%"" cellpadding=""5"" cellspacing=""10"" style=""background:#E9D0B6; border-style:solid; border-width:1px; border-color:#B05F3C;"">
<tbod",error,html,1,75,141,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,The “cellpadding” attribute on the “table” element is obsolete. Use CSS instead.,"l>
</div>
<table width=""100%"" cellpadding=""5"" cellspacing=""10"" style=""background:#E9D0B6; border-style:solid; border-width:1px; border-color:#B05F3C;"">
<tbod",error,html,1,75,141,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,The “cellspacing” attribute on the “table” element is obsolete. Use CSS instead.,"l>
</div>
<table width=""100%"" cellpadding=""5"" cellspacing=""10"" style=""background:#E9D0B6; border-style:solid; border-width:1px; border-color:#B05F3C;"">
<tbod",error,html,1,75,141,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"tbody><tr>
<td width=""55%"" style=""vertical-align:top;padding: 0; margin:0;"">
<div ",error,html,12,77,65,76,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"th:100%"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,79,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"th:100%"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,79,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,The “big” element is obsolete. Use CSS instead.,"y_Portal""><big>The Hi",error,html,680,79,684,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"n-left"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,90,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"n-left"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,90,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"e 1950s.
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,93,107,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"e 1950s.
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,93,107,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,104,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,104,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"52.
</p>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,109,107,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"52.
</p>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,109,107,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,120,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,120,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"/li></ul>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,133,107,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"/li></ul>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,133,107,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"-right"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,146,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"-right"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,146,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,The “center” element is obsolete. Use CSS instead.,"adius:0"">
<center>
<tabl",error,html,1,147,8,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"</center>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,155,107,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"</center>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,155,107,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,166,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,166,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,192,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,192,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,Element “style” not allowed as child of element “div” in this context. (Suppressing further errors from this subtree.),"adius:0"">
<style data-mw-deduplicate=""TemplateStyles:r886047036"">.mw-pa",error,html,1,193,55,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"ockquote>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,195,107,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"ockquote>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,195,107,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,207,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,207,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"v>
</div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,231,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"v>
</div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,231,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,The “valign” attribute on the “tr” element is obsolete. Use CSS instead.,">
<tbody><tr valign=""top"">
<td><",error,html,8,234,24,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,280,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,280,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,290,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,290,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,Element “style” not allowed as child of element “div” in this context. (Suppressing further errors from this subtree.),"adius:0"">
<style data-mw-deduplicate=""TemplateStyles:r886049300"">.mw-pa",error,html,1,291,55,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","v>
</div>
<link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r886049300"">
<div ",error,html,1,383,82,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,Table column 2 established by element “th” has no cells beginning in it.,"tbody><tr><th scope=""col"" class=""navbox-title"" colspan=""2""><div c",error,html,229,385,277,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","v>
</div>
<link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r886049300"">
<div ",error,html,1,398,82,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,"A “link” element must not appear as a descendant of a “body” element unless the “link” element has an “itemprop” attribute or has a “rel” attribute whose value contains “dns-prefetch”, “modulepreload”, “pingback”, “preconnect”, “prefetch”, “preload”, “prerender”, or “stylesheet”.","v>
</div>
<link rel=""mw-deduplicated-inline-style"" href=""mw-data:TemplateStyles:r886049300"">
<div ",error,html,1,575,82,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,697,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,697,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,":100%;"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,721,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,":100%;"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,721,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,Duplicate ID “portals-browsebar”.,"adius:0"">
<div id=""portals-browsebar"" class=""hlist noprint"" style=""text-align: center;"">
<dl><",error,html,1,722,78,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,The first occurrence of ID “portals-browsebar” was here.,"lt"">
</p>
<div id=""portals-browsebar"" class=""hlist noprint"" style=""text-align: center;"">
<dl><",info,html,1,59,78,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,739,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #C27E3A;box-sizing:border-box;text-align:center;font-size:100%;background:#DAAF85;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,739,396,,,,
https://en.wikipedia.org/wiki/Portal:History,1,html,CSS: “color”: Parse Error.,"History/""><span style=""color:{{{linkcolour}}}"">Sub-pa",error,html,101,813,137,,,,
https://en.wikipedia.org/wiki/Portal:History,1,duplicate-id,Ensures every id attribute value is unique,,error,"cat.parsing,wcag2a,wcag411",,,,,minor,id attribute value must be unique,https://dequeuniversity.com/rules/ta11y/3.4/duplicate-id?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:History,1,image-redundant-alt,Ensure image alternative is not repeated as text,,error,"cat.text-alternatives,best-practice",,,,,minor,Alternative text of images should not be repeated as text,https://dequeuniversity.com/rules/ta11y/3.4/image-redundant-alt?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:History,1,link-name,Ensures links have discernible text,,error,"cat.name-role-value,wcag2a,wcag412,wcag244,section508,section508.22.a",,,,,serious,Links must have discernible text,https://dequeuniversity.com/rules/ta11y/3.4/link-name?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:History,1,region,Ensures all page content is contained by landmarks,,error,"cat.keyboard,best-practice",,,,,moderate,All page content must be contained by landmarks,https://dequeuniversity.com/rules/ta11y/3.4/region?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:History,1,color-contrast,Ensures the contrast between foreground and background colors meets WCAG 2 AA contrast ratio thresholds,,warning,"cat.color,wcag2aa,wcag143",,,,,serious,Elements must have sufficient color contrast,https://dequeuniversity.com/rules/ta11y/3.4/color-contrast?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:Science,1,html,Element “style” not allowed as child of element “div” in this context. (Suppressing further errors from this subtree.),"le></div>
<style data-mw-deduplicate=""TemplateStyles:r888483065"">.mw-pa",error,html,1,72,55,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,The “center” element is obsolete. Use CSS instead.,"left:1em""><center><a hre",error,html,42,99,49,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"t-wide"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#069;margin-bottom:0px;border:solid #069;box-sizing:border-box;text-align:center;font-size:100%;background:#f2f7ff;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,112,392,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"t-wide"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#069;margin-bottom:0px;border:solid #069;box-sizing:border-box;text-align:center;font-size:100%;background:#f2f7ff;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,112,392,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"nt means.
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,115,107,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"nt means.
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,115,107,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#069;margin-bottom:0px;border:solid #069;box-sizing:border-box;text-align:center;font-size:100%;background:#f2f7ff;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,126,392,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#069;margin-bottom:0px;border:solid #069;box-sizing:border-box;text-align:center;font-size:100%;background:#f2f7ff;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,126,392,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"v></div>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbod",error,html,1,128,107,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"v></div>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbod",error,html,1,128,107,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"tbody><tr>
<td style=""text-align:center;"" width=""33%""><small",error,html,12,130,43,129,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"/a>.
</p>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,134,107,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"/a>.
</p>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,134,107,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"tbody><tr>
<td width=""33%""><div s",error,html,12,137,16,136,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"narrow"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#069;margin-bottom:0px;border:solid #069;box-sizing:border-box;text-align:center;font-size:100%;background:#f2f7ff;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,147,392,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"narrow"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#069;margin-bottom:0px;border:solid #069;box-sizing:border-box;text-align:center;font-size:100%;background:#f2f7ff;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,147,392,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"day.
</p>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,152,107,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"day.
</p>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,152,107,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#069;margin-bottom:0px;border:solid #069;box-sizing:border-box;text-align:center;font-size:100%;background:#f2f7ff;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,163,392,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#069;margin-bottom:0px;border:solid #069;box-sizing:border-box;text-align:center;font-size:100%;background:#f2f7ff;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,163,392,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"/li></ul>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,171,107,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"/li></ul>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,171,107,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"noprint"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#069;margin-bottom:0px;border:solid #069;box-sizing:border-box;text-align:center;font-size:100%;background:#f2f7ff;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,184,392,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"noprint"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:#069;margin-bottom:0px;border:solid #069;box-sizing:border-box;text-align:center;font-size:100%;background:#f2f7ff;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,184,392,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,html,CSS: “color”: Parse Error.,"Science/""><span style=""color:{{{linkcolour}}}"">Sub-pa",error,html,101,259,137,,,,
https://en.wikipedia.org/wiki/Portal:Science,1,link-name,Ensures links have discernible text,,error,"cat.name-role-value,wcag2a,wcag412,wcag244,section508,section508.22.a",,,,,serious,Links must have discernible text,https://dequeuniversity.com/rules/ta11y/3.4/link-name?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:Science,1,region,Ensures all page content is contained by landmarks,,error,"cat.keyboard,best-practice",,,,,moderate,All page content must be contained by landmarks,https://dequeuniversity.com/rules/ta11y/3.4/region?application=Ta11y%20API
https://en.wikipedia.org/wiki/Portal:Society,1,html,"CSS: “background-image”: The first argument to the “linear-gradient” function should be “to bottom”, not “bottom”.","5,255,255) 100%);margin:auto;p",error,html,,16,3020,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,"CSS: “background-image”: The first argument to the “linear-gradient” function should be “to bottom”, not “bottom”.","b(71,71,71) 68%)}.alert-text{c",error,html,,16,4010,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,Element “style” not allowed as child of element “div” in this context. (Suppressing further errors from this subtree.),"le></div>
<style data-mw-deduplicate=""TemplateStyles:r888483065"">.mw-pa",error,html,1,69,55,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"l>
</div>
<table width=""100%"" cellpadding=""5"" cellspacing=""10"" style=""background:#FFFFFF; border-style:solid; border-width:3px; border-color: black; font-size: 1.0em;"">
<tbod",error,html,1,85,158,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,The “cellpadding” attribute on the “table” element is obsolete. Use CSS instead.,"l>
</div>
<table width=""100%"" cellpadding=""5"" cellspacing=""10"" style=""background:#FFFFFF; border-style:solid; border-width:3px; border-color: black; font-size: 1.0em;"">
<tbod",error,html,1,85,158,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,The “cellspacing” attribute on the “table” element is obsolete. Use CSS instead.,"l>
</div>
<table width=""100%"" cellpadding=""5"" cellspacing=""10"" style=""background:#FFFFFF; border-style:solid; border-width:3px; border-color: black; font-size: 1.0em;"">
<tbod",error,html,1,85,158,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"tbody><tr>
<td width=""55%"" valign=""top"" style=""padding: 0; margin:0;"">
<div ",error,html,12,87,59,86,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,The “valign” attribute on the “td” element is obsolete. Use CSS instead.,"tbody><tr>
<td width=""55%"" valign=""top"" style=""padding: 0; margin:0;"">
<div ",error,html,12,87,59,86,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"th:100%"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #61C9E2;box-sizing:border-box;text-align:center;font-size:100%;background:#61C9E2;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,89,396,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"th:100%"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #61C9E2;box-sizing:border-box;text-align:center;font-size:100%;background:#61C9E2;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,89,396,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,The “big” element is obsolete. Use CSS instead.,"y_Portal""><big>The So",error,html,843,89,847,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,The “center” element is obsolete. Use CSS instead.,"left:1em""><center>Cleric",error,html,42,90,49,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"ent.
</p>
<table width=""100%"" border=""0"" style=""padding: 0; margin: 0; background: transparent;"">
<tbod",error,html,1,100,87,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"ent.
</p>
<table width=""100%"" border=""0"" style=""padding: 0; margin: 0; background: transparent;"">
<tbod",error,html,1,100,87,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"h:50%;"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #61C9E2;box-sizing:border-box;text-align:center;font-size:100%;background:#61C9E2;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,108,396,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"h:50%;"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #61C9E2;box-sizing:border-box;text-align:center;font-size:100%;background:#61C9E2;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,108,396,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"rch</a>.
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,111,107,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"rch</a>.
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,111,107,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #61C9E2;box-sizing:border-box;text-align:center;font-size:100%;background:#61C9E2;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,122,396,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #61C9E2;box-sizing:border-box;text-align:center;font-size:100%;background:#61C9E2;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,122,396,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"/a>.
</p>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,126,107,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"/a>.
</p>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,126,107,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,The “width” attribute on the “td” element is obsolete. Use CSS instead.,"tbody><tr>
<td width=""33%""><div s",error,html,12,129,16,128,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #61C9E2;box-sizing:border-box;text-align:center;font-size:100%;background:#61C9E2;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,137,396,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #61C9E2;box-sizing:border-box;text-align:center;font-size:100%;background:#61C9E2;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,137,396,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"/li></ul>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,145,107,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"/li></ul>
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,145,107,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #61C9E2;box-sizing:border-box;text-align:center;font-size:100%;background:#61C9E2;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,156,396,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #61C9E2;box-sizing:border-box;text-align:center;font-size:100%;background:#61C9E2;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,156,396,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"th:49%"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #61C9E2;box-sizing:border-box;text-align:center;font-size:100%;background:#61C9E2;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,169,396,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,CSS: “webkit-border-radius”: Property “webkit-border-radius” doesn't exist.,"th:49%"">
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #61C9E2;box-sizing:border-box;text-align:center;font-size:100%;background:#61C9E2;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,169,396,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,The “width” attribute on the “table” element is obsolete. Use CSS instead.,"s Canada.
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,172,107,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,The “border” attribute on the “table” element is obsolete. Use CSS instead.,"s Canada.
<table class=""noprint"" width=""100%"" border=""0"" style=""padding: 0; margin: 0; background-color:transparent"">
<tbo",error,html,1,172,107,,,,
https://en.wikipedia.org/wiki/Portal:Society,1,html,CSS: “moz-border-radius”: Property “moz-border-radius” doesn't exist.,"iv></div>
<div class=""box-header-title-container flex-columns-noflex"" style=""clear:both;color:black;margin-bottom:0px;border:solid #61C9E2;box-sizing:border-box;text-align:center;font-size:100%;background:#61C9E2;font-family:sans-serif;padding:.1em;border-width:1px 1px 0;padding-top:.1em;padding-left:.1em;padding-right:.1em;padding-bottom:.1em;moz-border-radius:0;webkit-border-radius:0;border-radius:0""><div c",error,html,1,183,396,,,,