-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2473 lines (2473 loc) · 124 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Asset Config - The Web Asset Control Panel</title>
<meta name="description" content="Asset Config takes care of the small things. Control the production and management of .htaccess, sitemaps, robots.txt, vCards, and other unique web formats.">
<link rel="preload" as="font" type="font/woff2" crossorigin href="cache/fonts/PTSerif-Bold.woff2">
<link rel="preload" as="font" type="font/woff2" crossorigin href="cache/fonts/PTSerif-Regular.woff2">
<link rel="stylesheet" href="cache/style.css">
<link rel="author" type="text/plain" href="humans.txt">
<meta name="referrer" content="no-referrer">
<meta name="apple-mobile-web-app-title" content="Asset Config">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" href="favicon.ico" sizes="32x32">
<link rel="icon" type="image/svg+xml" href="images/icon.svg">
<link rel="manifest" href="site.webmanifest">
<meta name="theme-color" content="#ffffff">
<meta name="msapplication-config" content="browserconfig.xml">
<meta property="og:title" content="Asset Config">
<meta property="og:description" content="Asset Config takes care of the small things. Control the production and management of .htaccess, sitemaps, robots.txt, vCards, and other unique web formats.">
<meta property="og:type" content="website">
<meta property="og:locale" content="en_us">
<meta property="og:url" content="https://assetconfig.com/">
<meta property="og:image" content="images/banner.png">
<meta property="og:image:alt" content="Logo">
<script defer src="cache/script.js"></script>
<script type="application/ld+json">
{
"@context" : "https://schema.org",
"@type" : "WebSite",
"name": "Asset Config",
"url": "https://assetconfig.com/"
}
</script>
</head>
<body class="body">
<header class="header">
<div class="hgroup">
<h1 class="heading"><svg class="logo" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 64 64"><path d="M56.156 0l4.203 35.722-4.718 0.555-3.753-31.902h-39.776l-3.753 31.902-4.718-0.555 4.203-35.722zM16 8h32v4h-32zM16 16h32v4h-32zM16 24h32v4h-32zM16 32h32v4h-32zM62 40h-60c-1.1 0-1.715 0.854-1.367 1.897l6.735 20.205c0.348 1.044 1.532 1.897 2.632 1.897h44c1.1 0 2.285-0.854 2.633-1.897l6.735-20.205c0.348-1.044-0.268-1.897-1.368-1.897zM40 48h-16v-4h16v4z"/></svg>Asset Config</h1>
<h2 class="subheading">The Web Asset Control Panel</h2>
</div>
<p class="overview">Asset Config takes care of the small things. Control the production and management of .htaccess, sitemaps, robots.txt, vCards, and other unique web formats.</p>
<ul class="book">
<li class="item"><a class="button" href="#toolbox">App Toolbox</a></li>
<li class="item"><a class="button" href="#download">Read Book</a></li>
</ul>
</header>
<main class="main">
<article class="page" id="toolbox">
<h2 class="screenReader">Toolbox</h2>
<ul class="grid">
<li class="list"><a class="anchor" href="#head"><strong class="strong"><head><span> - </span></strong>Build an inventory of what you need in the head of your HTML document using links, metadata and other elements.</a></li>
<li class="list"><a class="anchor" href="#.htaccess"><strong class="strong">.htaccess<span> - </span></strong>Build Apache server configuration files with all the trimmings you may require for a fast, efficient, performant server.</a></li>
<li class="list"><a class="anchor" href="#ads.txt"><strong class="strong">ads.txt<span> - </span></strong>Ensure that advertisement fraud is reduced using a simple SEO friendly text file to verify your sales channels.</a></li>
<li class="list"><a class="anchor" href="#carbon.txt"><strong class="strong">carbon.txt<span> - </span></strong>Use this emerging standard to both track and validate your businesses digital green credentials across the web.</a></li>
<li class="list"><a class="anchor" href="#change.log"><strong class="strong">change.log<span> - </span></strong>Build a changelog that identifies additions, changes, deprecations, removals, fixes, and security patches.</a></li>
<li class="list"><a class="anchor" href="#clientaccesspolicy.xml"><strong class="strong">clientaccesspolicy.xml<span> - </span></strong>Now obsolete due to Microsoft Silverlight being redundant, you can build the streaming policy file here.</a></li>
<li class="list"><a class="anchor" href="#crossdomain.xml"><strong class="strong">crossdomain.xml<span> - </span></strong>Now obsolete due to Adobe Flash's retirement, you can still build the streaming allowance policy file here.</a></li>
<li class="list"><a class="anchor" href="#dublin.rdf"><strong class="strong">dublin.rdf<span> - </span></strong>If you rely on RDF metadata, use this generator to quickly build a profile index of your website for SEO purposes.</a></li>
<li class="list"><a class="anchor" href="#error.html"><strong class="strong">error.html<span> - </span></strong>Mistakes happen, so use this error page (and it's anchor references) to cover your possible problematic endpoints.</a></li>
<li class="list"><a class="anchor" href="#event.ics"><strong class="strong">event.ics<span> - </span></strong>Craft downloadable event files that are supported by both desktop and mobile calendar (and email) applications.</a></li>
<li class="list"><a class="anchor" href="#favicon.ico"><strong class="strong">favicon.ico<span> - </span></strong>Generate the various images required for multi-platform support for browsers, banners, and icons with this checklist.</a></li>
<li class="list"><a class="anchor" href="#feed.xml"><strong class="strong">feed.xml<span> - </span></strong>Generate a RSS, Atom or JSON feed that's compatible with both syndication readers or podcast clients like iTunes.</a></li>
<li class="list"><a class="anchor" href="#foaf.rdf"><strong class="strong">foaf.rdf<span> - </span></strong>If you're a member of the FOAF scheme, use this tool to build a profile of your online identity for SEO purposes.</a></li>
<li class="list"><a class="anchor" href="#geo.rdf"><strong class="strong">geo.rdf<span> - </span></strong>If you rely on RDF metadata, create an indexable link to your location, with full Google Earth zoomer integration.</a></li>
<li class="list"><a class="anchor" href="#humans.txt"><strong class="strong">humans.txt<span> - </span></strong>Give credit where it's due with the standardised, self-contained, non-impactful accreditation text file format.</a></li>
<li class="list"><a class="anchor" href="#index.html"><strong class="strong">index.html<span> - </span></strong>Every project needs a starting point, this is mine. Generate a HTML5 boilerplate that'll get your project started well.</a></li>
<li class="list"><a class="anchor" href="#legal.txt"><strong class="strong">legal.txt<span> - </span></strong>Generate a license, terms of service, impressum, accessibility statements, and privacy policy document for your site.</a></li>
<li class="list"><a class="anchor" href="#list.opml"><strong class="strong">list.opml<span> - </span></strong>Create a curated list of items, whether links or media to show your visitors what they really should subscribe to.</a></li>
<li class="list"><a class="anchor" href="#modes.css"><strong class="strong">modes.css<span> - </span></strong>Generate a default dark mode, prefers reduced motion, monochrome and a prefers reduced data stylesheet.</a></li>
<li class="list"><a class="anchor" href="#opensearch.xml"><strong class="strong">opensearch.xml<span> - </span></strong>Integrate your sites search engine into the users browser to improve their access to your service quickly and easily.</a></li>
<li class="list"><a class="anchor" href="#p3p.xml"><strong class="strong">p3p.xml<span> - </span></strong>While this standard is obsolete for browsers other than IE9 or lower, you can still build the privacy file here.</a></li>
<li class="list"><a class="anchor" href="#powder.xml"><strong class="strong">powder.xml<span> - </span></strong>Got children visiting your site? Add content labelling plus optional support for the older extended PICS scheme.</a></li>
<li class="list"><a class="anchor" href="#print.css"><strong class="strong">print.css<span> - </span></strong>Setup a default stylesheet for when your website is being printed or exported to an offline document format like PDF.</a></li>
<li class="list"><a class="anchor" href="#readme"><strong class="strong">README<span> - </span></strong>Create a README document for developers working on production files, or projects, critical to the website.</a></li>
<li class="list"><a class="anchor" href="#robots.txt"><strong class="strong">robots.txt<span> - </span></strong>Generate a robots text file using the extended standard to ensure search engines can find all your pages easily.</a></li>
<li class="list"><a class="anchor" href="#security.txt"><strong class="strong">security.txt<span> - </span></strong>Show you mean business by giving your security related website details, and (if required) add a do not track policy.</a></li>
<li class="list"><a class="anchor" href="#site.webmanifest"><strong class="strong">site.webmanifest<span> - </span></strong>Ensure your PWA is complete. Add this manifest, and even a browserconfig for old IE users to add tile support.</a></li>
<li class="list"><a class="anchor" href="#sitemap.xml"><strong class="strong">sitemap.xml<span> - </span></strong>Generate a complete inventory of your pages to ensure that search engines can correctly index your website.</a></li>
<li class="list"><a class="anchor" href="#style.css"><strong class="strong">style.css<span> - </span></strong>Every site begins with some generic styles, these are mine. Generate a DRY stylesheet for your new project.</a></li>
<li class="list"><a class="anchor" href="#subtitles.vtt"><strong class="strong">subtitles.vtt<span> - </span></strong>Meet accessibility standards by creating video subtitles. Using timestamps, add text to go along with the spoken word.</a></li>
<li class="list"><a class="anchor" href="#sw.js"><strong class="strong">sw.js<span> - </span></strong>Generate a basic service worker to get your progressive web application up and running using this simple tool.</a></li>
<li class="list"><a class="anchor" href="#vcard.vcf"><strong class="strong">vcard.vcf<span> - </span></strong>Add your business or personal details into a downloadable address book file supported on desktop and mobile.</a></li>
</ul>
</article>
<article class="page" id="head">
<h2 class="screenReader">Head</h2>
<form class="format">
<fieldset class="spacer">
<legend class="assist"><head></legend>
<fieldset class="spacer">
<legend class="assist">Base Elements</legend>
<ul class="form">
<li class="gap">
<label class="info" for="head-title">Project Title:</label>
<input class="txt" type="text" name="head-title" id="head-title" required>
</li>
<li class="gap">
<input type="checkbox" id="head-base" name="head-base">
<label class="info" for="head-base">Do you need a base element?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-style1" name="head-style1">
<label class="info" for="head-style1">Do you need any inline CSS?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-style2" name="head-style2" checked>
<label class="info" for="head-style2">Do you need an external CSS link?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-script1" name="head-script1" checked>
<label class="info" for="head-script1">Do you need an external JS link?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-script2" name="head-script2">
<label class="info" for="head-script2">Do you need any inline JavaScript?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-style3" name="head-style3">
<label class="info" for="head-style3">Do you need an alternative CSS link?</label>
</li>
</ul>
</fieldset>
<fieldset class="spacer">
<legend class="assist">http-equiv Elements</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="head-csp" name="head-csp">
<label class="info" for="head-csp">Do you need a content security policy?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-content" name="head-content">
<label class="info" for="head-content">Do you need to define a MIME type?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-default" name="head-default">
<label class="info" for="head-default">Do you have more than one CSS theme?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-ie6" name="head-ie6">
<label class="info" for="head-ie6">Do you have any IE6 users left?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-refresh" name="head-refresh">
<label class="info" for="head-refresh">Do you need to force a redirection?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-target" name="head-target">
<label class="info" for="head-target">Do you use frames in your website?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-dns" name="head-dns">
<label class="info" for="head-dns">Does DNS prefetching glitch your site?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-iex" name="head-iex">
<label class="info" for="head-iex">Do you have Internet Explorer 8-10 users?</label>
</li>
</ul>
</fieldset>
<fieldset class="spacer">
<legend class="assist">Name Elements</legend>
<ul class="form">
<li class="gap">
<label class="info" for="head-desc">Project Description:</label>
<textarea class="txt area" maxlength="156" name="head-desc" id="head-desc" required></textarea>
</li>
<li class="gap">
<input type="checkbox" id="head-viewport" name="head-viewport" checked>
<label class="info" for="head-viewport">Do you want to set the base mobile viewport?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-about" name="head-about">
<label class="info" for="head-about">Do you want to offer generic META data about you?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-app" name="head-app">
<label class="info" for="head-app">Do you want to make your app run on iOS and Android?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-color" name="head-color">
<label class="info" for="head-color">Does your app prefer a specific palette like dark mode?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-phone" name="head-phone">
<label class="info" for="head-phone">Do you want to disable phone number detection?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-geo" name="head-geo">
<label class="info" for="head-geo">Do you want to offer geodata about you?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-google" name="head-google">
<label class="info" for="head-google">Do you want to disable Google in-page services?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-robots" name="head-robots">
<label class="info" for="head-robots">Does this page need to be excluded from search?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-ietile" name="head-ietile">
<label class="info" for="head-ietile">Do you want to provide tile images for IE users?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-monetize" name="head-monetize">
<label class="info" for="head-monetize">Do you monetize your site using a payment stream?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-pinterest" name="head-pinterest">
<label class="info" for="head-pinterest">Do you want to block Pinterest pinning?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-rating" name="head-rating">
<label class="info" for="head-rating">Do you want to make the site adults only?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-refer" name="head-refer">
<label class="info" for="head-refer">Do you want to manage referer requests?</label>
</li>
</ul>
</fieldset>
<fieldset class="spacer">
<legend class="assist">Other Elements</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="head-og" name="head-og">
<label class="info" for="head-og">Do you want to offer social media metadata?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-twitter" name="head-twitter">
<label class="info" for="head-twitter">Do you want to offer Twitter cards?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-dcmi" name="head-dcmi">
<label class="info" for="head-dcmi">Do you want to offer DCMI metadata?</label>
</li>
</ul>
</fieldset>
<fieldset class="spacer">
<legend class="assist">Url Elements</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="head-amp" name="head-amp">
<label class="info" for="head-amp">Do you want to offer a Google AMP link?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-nav" name="head-nav">
<label class="info" for="head-nav">Do you want to offer embedded navigation links?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-canon" name="head-canon">
<label class="info" for="head-canon">Do you want to set the canonical link?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-prefetch" name="head-prefetch">
<label class="info" for="head-prefetch">Do you want to prefetch site resources?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-edit" name="head-edit">
<label class="info" for="head-edit">Do you want to include editor links?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-openid" name="head-openid">
<label class="info" for="head-openid">Do you want to include OpenID support?</label>
</li>
</ul>
</fieldset>
<fieldset class="spacer">
<legend class="assist">Asset Elements</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="head-feed" name="head-feed">
<label class="info" for="head-feed">Do you want to offer syndication feeds?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-favicon" name="head-favicon">
<label class="info" for="head-favicon">Do you want to add favicons and splash screens?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-credit" name="head-credit">
<label class="info" for="head-credit">Do you want to give credit to anyone?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-index" name="head-index">
<label class="info" for="head-index">Do you want to index this site using metadata?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-safe" name="head-safe">
<label class="info" for="head-safe">Do you want to attach a family-friendly label?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-license" name="head-license">
<label class="info" for="head-license">Do you have a license that needs referencing?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-p3p" name="head-p3p">
<label class="info" for="head-p3p">Do you need P3P support for old IE6 users?</label>
</li>
<li class="gap">
<input type="checkbox" id="head-search" name="head-search">
<label class="info" for="head-search">Do you want to allow search within browsers?</label>
</li>
</ul>
</fieldset>
<button class="btn" type="button" id="head-generate">Generate</button>
<button class="btn hide" type="button" id="head-download">Download</button>
<input class="btn" type="reset">
</fieldset>
</form>
</article>
<article class="page" id=".htaccess">
<h2 class="screenReader">.htaccess</h2>
<form class="format">
<fieldset class="spacer">
<legend class="assist">.htaccess</legend>
<fieldset class="spacer">
<legend class="assist">CORS Requests</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="hta-corimg" name="hta-corimg" checked>
<label class="info" for="hta-corimg">Do you want to send CORS headers for images?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-corttf" name="hta-corttf" checked>
<label class="info" for="hta-corttf">Do you want to send the CORS header for fonts?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-corall" name="hta-corall">
<label class="info" for="hta-corall">Do you want to allow all CORS requests? (Dangerous)</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-corsub" name="hta-corsub">
<label class="info" for="hta-corsub">Do you want to allow CORS requests from a subdomain?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-cortiming" name="hta-cortiming">
<label class="info" for="hta-cortiming">Do you want to allow CORS access to timing info?</label>
</li>
</ul>
</fieldset>
<fieldset class="spacer">
<legend class="assist">Rendering Settings</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="hta-ie" name="hta-ie">
<label class="info" for="hta-ie">Do you need to support Internet Explorer 8-10 users?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-encode" name="hta-encode" checked>
<label class="info" for="hta-encode">Do you want to ensure your files render in unicode?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-mime" name="hta-mime">
<label class="info" for="hta-mime">Do you want to prevent filetype mismatches occuring?</label>
</li>
</ul>
</fieldset>
<fieldset class="spacer">
<legend class="assist">Rewrites Settings</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="hta-noerr" name="hta-noerr" checked>
<label class="info" for="hta-noerr">Do you want to prevent errors resulting from rewrites?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-404" name="hta-404" checked>
<label class="info" for="hta-404">Do you want to include error pages for your visitors?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-301" name="hta-301">
<label class="info" for="hta-301">Do you want to redirect your visitors to a new location?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-https" name="hta-https" checked>
<label class="info" for="hta-https">Do you want to redirect all your http traffic to https?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-nwww" name="hta-nwww">
<label class="info" for="hta-nwww">Do you want to suppress the www. from your website?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-ywww" name="hta-ywww">
<label class="info" for="hta-ywww">Do you want to force the www. from your website?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-ver" name="hta-ver">
<label class="info" for="hta-ver">Do you not have versioning or a system like GIT?</label>
</li>
</ul>
</fieldset>
<fieldset class="spacer">
<legend class="assist">Security Settings</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="hta-block" name="hta-block" checked>
<label class="info" for="hta-block">Do you want to block individuals from your website?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-hotlink" name="hta-hotlink">
<label class="info" for="hta-hotlink">Do you want to prevent hotlinking on your website?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-ckjk" name="hta-ckjk">
<label class="info" for="hta-ckjk">Do you want to block clickjacking (hurts Google images)?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-csp" name="hta-csp" checked>
<label class="info" for="hta-csp">Do you want to implement a <a href="https://report-uri.com/home/generate/">content security policy</a>?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-index" name="hta-index" checked>
<label class="info" for="hta-index">Do you want to block access to directories with no default file?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-hidden" name="hta-hidden" checked>
<label class="info" for="hta-hidden">Do you want to block access to hidden files and directories?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-backup" name="hta-backup" checked>
<label class="info" for="hta-backup">Do you want to block access to backups and source files?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-hsts" name="hta-hsts">
<label class="info" for="hta-hsts">Do you want to force <a href="https://hstspreload.org/">HTTPS</a>, regardless of consequences?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-sniff" name="hta-sniff" checked>
<label class="info" for="hta-sniff">Do you want to prevent sniffing based security issues?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-php" name="hta-php" checked>
<label class="info" for="hta-php">Do you want to prevent PHP fingerprinting security issues?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-usize" name="hta-usize" checked>
<label class="info" for="hta-usize">Do you want to set the upload size to reduce DoS attacks?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-xss" name="hta-xss">
<label class="info" for="hta-xss">Do you want to include a basic XSS protection script?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-refer" name="hta-refer">
<label class="info" for="hta-refer">Do you want to mitigate data leakage using a basic script?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-trace" name="hta-trace">
<label class="info" for="hta-trace">Do you use plug-in tools like Flash, Java or Silverlight?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-sig" name="hta-sig" checked>
<label class="info" for="hta-sig">Do you want to hide server and language information?</label>
</li>
</ul>
</fieldset>
<fieldset class="spacer">
<legend class="assist">Performance Settings</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="hta-gzip" name="hta-gzip" checked>
<label class="info" for="hta-gzip">Do you want to compress documents using gzip?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-brotli" name="hta-brotli">
<label class="info" for="hta-brotli">Do you want to serve Brotli compressed archives?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-gzip2" name="hta-gzip2">
<label class="info" for="hta-gzip2">Do you want to serve gzip compressed archives?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-proxy" name="hta-proxy">
<label class="info" for="hta-proxy">Are proxy's and data savers wrecking your layout?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-etag" name="hta-etag" checked>
<label class="info" for="hta-etag">Do you want to clear redundant eTags from headers?</label>
</li>
<li class="gap">
<input type="checkbox" id="hta-expire" name="hta-expire" checked>
<label class="info" for="hta-expire">Do you want to set expiry timescales for documents?</label>
</li>
</ul>
</fieldset>
<button class="btn" type="button" id="hta-generate">Generate</button>
<button class="btn hide" type="button" id="hta-download">Download</button>
<input class="btn" type="reset">
</fieldset>
</form>
</article>
<article class="page" id="ads.txt">
<h2 class="screenReader">ads.txt</h2>
<form class="format">
<fieldset class="spacer">
<legend class="assist">ads.txt</legend>
<fieldset class="spacer">
<legend class="assist">Ads Record</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="ads-record" name="ads-record" checked>
<label class="info" for="ads-record">Do you want to include an advertising record?</label>
</li>
</ul>
</fieldset>
<fieldset class="spacer">
<legend class="assist">Ads Extensions</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="ads-sub" name="ads-sub">
<label class="info" for="ads-sub">Do you want to point your root to a subdomain?</label>
</li>
<li class="gap">
<input type="checkbox" id="ads-contact" name="ads-contact">
<label class="info" for="ads-contact">Do you want to give advertiser contact details?</label>
</li>
</ul>
</fieldset>
<button class="btn" type="button" id="ads-generate">Generate</button>
<button class="btn hide" type="button" id="ads-download">Download</button>
<input class="btn" type="reset">
</fieldset>
</form>
</article>
<article class="page" id="carbon.txt">
<h2 class="screenReader">carbon.txt</h2>
<form class="format">
<fieldset class="spacer">
<legend class="assist">carbon.txt</legend>
<fieldset class="spacer">
<legend class="assist">Carbon Record</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="carbon-record" name="carbon-record" checked>
<label class="info" for="carbon-record">Do you want to include a carbon record?</label>
</li>
</ul>
</fieldset>
<fieldset class="spacer">
<legend class="assist">Carbon Extensions</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="carbon-details" name="carbon-details">
<label class="info" for="carbon-details">Do you want to provide details on the host?</label>
</li>
</ul>
</fieldset>
<button class="btn" type="button" id="carbon-generate">Generate</button>
<button class="btn hide" type="button" id="carbon-download">Download</button>
<input class="btn" type="reset">
</fieldset>
</form>
</article>
<article class="page" id="change.log">
<h2 class="screenReader">change.log</h2>
<form class="format">
<fieldset class="spacer">
<legend class="assist">change.log</legend>
<fieldset class="spacer">
<legend class="assist">Changes</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="change-add" name="change-add" checked>
<label class="info" for="change-add">Do you want to include an addition?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-cha" name="change-cha" checked>
<label class="info" for="change-cha">Do you want to include a change?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-dep" name="change-dep" checked>
<label class="info" for="change-dep">Do you want to include a deprecation?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-rem" name="change-rem" checked>
<label class="info" for="change-rem">Do you want to include a removal?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-fix" name="change-fix" checked>
<label class="info" for="change-fix">Do you want to include a bug fix?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-sec" name="change-sec" checked>
<label class="info" for="change-sec">Do you want to include a security patch?</label>
</li>
</ul>
</fieldset>
<fieldset class="spacer">
<legend class="assist">Boilerplate</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="change-changelog" name="change-changelog">
<label class="info" for="change-changelog">Do you want to declare a change.log?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-dessys" name="change-dessys">
<label class="info" for="change-dessys">Do you want to declare a design system?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-hta" name="change-hta">
<label class="info" for="change-hta">Do you want to declare a .htaccess file?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-html" name="change-html">
<label class="info" for="change-html">Do you want to declare a index & error file?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-img" name="change-img">
<label class="info" for="change-img">Do you want to declare your published images?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-css" name="change-css">
<label class="info" for="change-css">Do you want to declare a CSS stylesheet?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-xfont" name="change-xfont">
<label class="info" for="change-xfont">Do you want to declare an external font?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-gfont" name="change-gfont">
<label class="info" for="change-gfont">Do you want to declare a Google font?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-license" name="change-license">
<label class="info" for="change-license">Do you want to declare a license or policy?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-humans" name="change-humans">
<label class="info" for="change-humans">Do you want to declare a humans.txt file?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-security" name="change-security">
<label class="info" for="change-security">Do you want to declare a security.txt file?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-ads" name="change-ads">
<label class="info" for="change-ads">Do you want to declare an ads.txt file?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-robots" name="change-robots">
<label class="info" for="change-robots">Do you want to declare a robots.txt file?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-favicon" name="change-favicon">
<label class="info" for="change-favicon">Do you want to declare your favicons?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-pwa" name="change-pwa">
<label class="info" for="change-pwa">Do you want to declare your PWA manifest assets?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-event" name="change-event">
<label class="info" for="change-event">Do you want to declare a event.ics file?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-vcard" name="change-vcard">
<label class="info" for="change-vcard">Do you want to declare a vcard.vcf file?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-rss" name="change-rss">
<label class="info" for="change-rss">Do you want to declare your syndication feeds?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-dcmi" name="change-dcmi">
<label class="info" for="change-dcmi">Do you want to declare your DCMI metadata assets?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-sitemap" name="change-sitemap">
<label class="info" for="change-sitemap">Do you want to declare a sitemap.xml file?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-opensearch" name="change-opensearch">
<label class="info" for="change-opensearch">Do you want to declare a opensearch.xml file?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-subtitles" name="change-subtitles">
<label class="info" for="change-subtitles">Do you want to declare a subtitles.vtt file?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-carbon" name="change-carbon">
<label class="info" for="change-carbon">Do you want to declare a carbon.txt file?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-dnt" name="change-dnt">
<label class="info" for="change-dnt">Do you want to declare some DNT asset files?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-pics" name="change-pics">
<label class="info" for="change-pics">Do you want to declare your site child friendly?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-js" name="change-js">
<label class="info" for="change-js">Do you want to declare a JavaScript file?</label>
</li>
</ul>
</fieldset>
<fieldset class="spacer">
<legend class="assist">Log Extensions</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="change-unrel" name="change-unrel">
<label class="info" for="change-unrel">Do you want to include unreleased features?</label>
</li>
<li class="gap">
<input type="checkbox" id="change-guide" name="change-guide">
<label class="info" for="change-guide">Do you want to include a changelog guide?</label>
</li>
</ul>
</fieldset>
<button class="btn" type="button" id="change-generate">Generate</button>
<button class="btn hide" type="button" id="change-download">Download</button>
<input class="btn" type="reset">
</fieldset>
</form>
</article>
<article class="page" id="clientaccesspolicy.xml">
<h2 class="screenReader">clientaccesspolicy.xml</h2>
<form class="format">
<fieldset class="spacer">
<legend class="assist">clientaccesspolicy.xml</legend>
<button class="btn show" type="button" id="clientaccesspolicy-generate">Generate</button>
<button class="btn hide" type="button" id="clientaccesspolicy-download">Download</button>
</fieldset>
</form>
</article>
<article class="page" id="crossdomain.xml">
<h2 class="screenReader">crossdomain.xml</h2>
<form class="format">
<fieldset class="spacer">
<legend class="assist">crossdomain.xml</legend>
<fieldset class="spacer">
<legend class="assist">Flash Policy</legend>
<ul class="form">
<li class="gap">
<input type="radio" id="flash-domain" name="flash" value="flash-domain">
<label class="info" for="flash-domain">Allow Flash to request data from the root domain? (Moderate)</label>
</li>
<li class="gap">
<input type="radio" id="flash-min" name="flash" value="flash-min" checked>
<label class="info" for="flash-min">Block Flash from requesting data from any domain? (Safest)</label>
</li>
<li class="gap">
<input type="radio" id="flash-max" name="flash" value="flash-max">
<label class="info" for="flash-max">Allow Flash to request data from any domain? (Dangerous)</label>
</li>
</ul>
</fieldset>
<button class="btn" type="button" id="crossdomain-generate">Generate</button>
<button class="btn hide" type="button" id="crossdomain-download">Download</button>
<input class="btn" type="reset">
</fieldset>
</form>
</article>
<article class="page" id="dublin.rdf">
<h2 class="screenReader">dublin.rdf</h2>
<form class="format">
<fieldset class="spacer">
<legend class="assist">dublin.rdf</legend>
<fieldset class="spacer">
<legend class="assist">DCMI Records</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="dublin-con" name="dublin-con">
<label class="info" for="dublin-con">Do you want to include contributors?</label>
</li>
<li class="gap">
<input type="checkbox" id="dublin-cov" name="dublin-cov">
<label class="info" for="dublin-cov">Do you want to include a location?</label>
</li>
<li class="gap">
<input type="checkbox" id="dublin-cre" name="dublin-cre" checked>
<label class="info" for="dublin-cre">Do you want to include an author?</label>
</li>
<li class="gap">
<input type="checkbox" id="dublin-dat" name="dublin-dat" checked>
<label class="info" for="dublin-dat">Do you want to include a date?</label>
</li>
<li class="gap">
<input type="checkbox" id="dublin-des" name="dublin-des" checked>
<label class="info" for="dublin-des">Do you want to include a description?</label>
</li>
<li class="gap">
<input type="checkbox" id="dublin-for" name="dublin-for">
<label class="info" for="dublin-for">Do you want to include a file type?</label>
</li>
<li class="gap">
<input type="checkbox" id="dublin-ide" name="dublin-ide">
<label class="info" for="dublin-ide">Do you want to include an ISSN or ISBN?</label>
</li>
<li class="gap">
<input type="checkbox" id="dublin-lan" name="dublin-lan" checked>
<label class="info" for="dublin-lan">Do you want to include a language?</label>
</li>
<li class="gap">
<input type="checkbox" id="dublin-pub" name="dublin-pub">
<label class="info" for="dublin-pub">Do you want to include an organization?</label>
</li>
<li class="gap">
<input type="checkbox" id="dublin-rel" name="dublin-rel">
<label class="info" for="dublin-rel">Do you want to include a reference?</label>
</li>
<li class="gap">
<input type="checkbox" id="dublin-rig" name="dublin-rig">
<label class="info" for="dublin-rig">Do you want to include a copyright link?</label>
</li>
<li class="gap">
<input type="checkbox" id="dublin-sou" name="dublin-sou" checked>
<label class="info" for="dublin-sou">Do you want to include a source?</label>
</li>
<li class="gap">
<input type="checkbox" id="dublin-sub" name="dublin-sub">
<label class="info" for="dublin-sub">Do you want to include a subject?</label>
</li>
<li class="gap">
<input type="checkbox" id="dublin-tit" name="dublin-tit">
<label class="info" for="dublin-tit">Do you want to include a project title?</label>
</li>
<li class="gap">
<input type="checkbox" id="dublin-typ" name="dublin-typ">
<label class="info" for="dublin-typ">Do you want to include a category?</label>
</li>
</ul>
</fieldset>
<button class="btn" type="button" id="dublin-generate">Generate</button>
<button class="btn hide" type="button" id="dublin-download">Download</button>
<input class="btn" type="reset">
</fieldset>
</form>
</article>
<article class="page" id="error.html">
<h2 class="screenReader">error.html</h2>
<form class="format">
<fieldset class="spacer">
<legend class="assist">error.html</legend>
<fieldset class="spacer">
<legend class="assist">4×× Errors</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="error-400" name="error-400" checked>
<label class="info" for="error-400">Do you want to include a 400 Bad Request error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-401" name="error-401" checked>
<label class="info" for="error-401">Do you want to include a 401 Unauthorized error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-402" name="error-402">
<label class="info" for="error-402">Do you want to include a 402 Payment Required error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-403" name="error-403" checked>
<label class="info" for="error-403">Do you want to include a 403 Access Forbidden error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-404" name="error-404" checked>
<label class="info" for="error-404">Do you want to include a 404 Resource Not Found error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-405" name="error-405">
<label class="info" for="error-405">Do you want to include a 405 Method Not Allowed error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-406" name="error-406">
<label class="info" for="error-406">Do you want to include a 406 Not Acceptable error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-407" name="error-407">
<label class="info" for="error-407">Do you want to include a 407 Proxy Authentication Required error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-408" name="error-408" checked>
<label class="info" for="error-408">Do you want to include a 408 Request Timeout error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-409" name="error-409">
<label class="info" for="error-409">Do you want to include a 409 Conflict error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-410" name="error-410" checked>
<label class="info" for="error-410">Do you want to include a 410 Gone error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-411" name="error-411">
<label class="info" for="error-411">Do you want to include a 411 Length Required error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-412" name="error-412">
<label class="info" for="error-412">Do you want to include a 412 Precondition Failed error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-413" name="error-413">
<label class="info" for="error-413">Do you want to include a 413 Payload Too Large error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-414" name="error-414">
<label class="info" for="error-414">Do you want to include a 414 Request-URI Too Long error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-415" name="error-415">
<label class="info" for="error-415">Do you want to include a 415 Unsupported Media Type error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-416" name="error-416">
<label class="info" for="error-416">Do you want to include a 416 Requested Range Not Satisfiable error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-417" name="error-417">
<label class="info" for="error-417">Do you want to include a 417 Expectation Failed error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-418" name="error-418">
<label class="info" for="error-418">Do you want to include a 418 I'm A Teapot error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-421" name="error-421">
<label class="info" for="error-421">Do you want to include a 421 Misdirected Request error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-422" name="error-422">
<label class="info" for="error-422">Do you want to include a 422 Unprocessable Entity error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-423" name="error-423">
<label class="info" for="error-423">Do you want to include a 423 Locked error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-424" name="error-424">
<label class="info" for="error-424">Do you want to include a 424 Failed Dependency error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-426" name="error-426">
<label class="info" for="error-426">Do you want to include a 426 Upgrade Required error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-428" name="error-428">
<label class="info" for="error-428">Do you want to include a 428 Precondition Required error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-429" name="error-429" checked>
<label class="info" for="error-429">Do you want to include a 429 Too Many Requests error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-431" name="error-431">
<label class="info" for="error-431">Do you want to include a 431 Request Header Fields Too Large error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-444" name="error-444">
<label class="info" for="error-444">Do you want to include a 444 Connection Closed Without Response error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-451" name="error-451">
<label class="info" for="error-451">Do you want to include a 451 Unavailable For Legal Reasons error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-499" name="error-499">
<label class="info" for="error-499">Do you want to include a 499 Client Closed Request error?</label>
</li>
</ul>
</fieldset>
<fieldset class="spacer">
<legend class="assist">5×× Errors</legend>
<ul class="form">
<li class="gap">
<input type="checkbox" id="error-500" name="error-500" checked>
<label class="info" for="error-500">Do you want to include a 500 Internal Server Error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-501" name="error-501" checked>
<label class="info" for="error-501">Do you want to include a 501 Not Implemented Error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-502" name="error-502" checked>
<label class="info" for="error-502">Do you want to include a 502 Bad Gateway Error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-503" name="error-503" checked>
<label class="info" for="error-503">Do you want to include a 503 Service Unavailable error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-504" name="error-504" checked>
<label class="info" for="error-504">Do you want to include a 504 Gateway Timeout Error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-505" name="error-505">
<label class="info" for="error-505">Do you want to include a 505 HTTP Version Not Supported Error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-506" name="error-506">
<label class="info" for="error-506">Do you want to include a 506 Variant Also Negotiates Error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-507" name="error-507">
<label class="info" for="error-507">Do you want to include a 507 Insufficient Storage Error?</label>
</li>
<li class="gap">
<input type="checkbox" id="error-508" name="error-508" checked>
<label class="info" for="error-508">Do you want to include a 508 Loop Detected Error?</label>
</li>
<li class="gap">