-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1057 lines (841 loc) · 44.9 KB
/
index.html
File metadata and controls
1057 lines (841 loc) · 44.9 KB
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>
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:og="http://ogp.me/ns#">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="imagetoolbar" content="no">
<!-- Standard Metadata -->
<title>HTML5 Test Page (all elements)</title>
<meta name="description" content="">
<meta name="author" content="Mark James (http://mark.james.name)">
<meta name="keywords" content="">
<meta name="copyright" content="">
<meta name="robots" content="all">
<meta name="viewport" content="width=device-width; initial-scale=1.0;">
<!-- Dublin Core Metadata -->
<meta name="DC.identifier" content="http://example.com" />
<meta name="DC.creator" lang="en" content="Mark James">
<meta name="DC.date.created" lang="en" content="2011-01-12">
<meta name="DC.date.modifed" lang="en" content="2005-01-12">
<meta name="DC.format" lang="en" content="text/html">
<meta name="DC.language" content="en">
<meta name="DC.coverage" lang="en" content="UK">
<meta name="DC.publisher" lang="en" content="Mark James" />
<meta name="DC.rights.copyright" lang="en" content="">
<!-- eGMS Metadata -->
<meta name="eGMS.status" lang="en" content="V1.0 Public Consumption">
<meta name="eGMS.accessibility" scheme="WCAG" content="Double-A">
<meta name="eGMS.Subject.service" content="General information (museums, galleries)" scheme="eGMS.LGSL">
<meta name="eGMS.Subject.service" content="Archives" scheme="eGMS.LGSL">
<meta name="eGMS.subject.keyword" content="archives museum;history;Archives;archives history;cultural;Museums and galleries;Local History Societies;Local History;Museums;libraries archives" scheme="LGCL" />
<meta name="eGMS.Subject.category" content="Culture and creativity" scheme="GCL" />
<meta name="eGMS.Subject.category" content="Museums and galleries" scheme="GCL" />
<meta name="eGMS.Subject.category" content="Heritage" scheme="GCL" />
<meta name="eGMS.Subject.category" content="Arts, recreation and travel" scheme="GCL" />
<meta name="eGMS.Subject.category" content="Libraries and archives" scheme="GCL" />
<meta name="eGMS.Subject.category" content="Guided walks" scheme="IPSV" />
<meta name="eGMS.Subject.category" content="Archives" scheme="IPSV">
<meta name="eGMS.Subject.category" content="Art galleries" scheme="IPSV">
<meta name="eGMS.Subject.category" content="Local history" scheme="IPSV">
<meta name="eGMS.Subject.category" content="Archives" scheme="LGCL">
<meta name="eGMS.Subject.category" content="Local History and heritage" scheme="LGCL">
<meta name="eGMS.Subject.category" content="Culture" scheme="LGCL">
<meta name="eGMS.Subject.category" content="Museums and galleries" scheme="LGCL">
<meta name="eGMS.Subject.category" content="Leisure and culture" scheme="LGCL">
<!-- Open Graph Metadata -->
<meta property="og:site_name" content="">
<meta property="og:title" content="">
<meta property="og:description" content="">
<meta property="og:type" content="website"><!-- http://bit.ly/cyzaOm -->
<meta property="og:image" content="">
<meta property="og:url" content="">
<!-- Navigation -->
<link rel="home" href="/">
<link rel="contents" href="../" title="">
<link rel="chapter" href="../" title="">
<link rel="index" href="../" title="">
<link rel="start" href="" title="">
<link rel="prev" href="" title="">
<link rel="next" href="" title="">
<!-- Icons -->
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<!-- base -->
<base href="">
<!-- CSS -->
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/forms.css">
<link rel="stylesheet" href="assets/css/start.css">
<style>
#container { margin: 4em; }
#all-html5-elements > h1 {
font-size: 3em;
margin-bottom: 0.25em;
}
section.intro {
background-color: #E0E0E0;
padding: 1em 1em 1px 1em;
}
h2, #headings-above-paragraphs h2:first-child {
color: #3D6390;
border-top: 6px solid #DDD;
margin-top: 1.5em;
padding-top: 1em;
margin-bottom: 1em;
}
hgroup ~ h2, hgroup h2, #headings-above-paragraphs h2 {
padding-top: 0;
margin-top: 0.9em;
margin-bottom: 0.2em;
color: #3E3D38;
border: none;
}
</style>
<!-- Analytics -->
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXX-X']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- Modernizr -->
<script src="assets/js/modernizr-1.5.min.js"></script>
</head>
<body class="page- template- section- environment-">
<p id="skip-links">
<a href="#primary-content" title="Skip To Content">Skip To Content</a>
<a href="#primary-navigation" title="Skip To Primary Navigation">Skip To Primary Navigation</a>
<a href="#secondary-content" title="Skip To Secondary Features">Skip To Secondary Features</a>
</p><!-- /#skip-links -->
<div id="container">
<header id="header">
</header><!-- /#header -->
<nav id="unit-primary-navigation" role="navigation">
</nav><!-- /#unit-primary-navigation -->
<div id="primary-content" role="main">
<div id="all-html5-elements">
<!-- h1 (outside section) -->
<h1>All HTML5 Elements</h1>
<section class="intro">
<p><strong>…apart from the following:</strong>
article
aside
caption
embed
fieldset
footer
form
header
input
label
legend
link
mark
meta
meter
nav
noscript
object
output
param
q
rp
rt
ruby
samp
script
section
small
source
summary
time
title
track*
</p>
</section>
<!-- section -->
<section>
<!-- h2 -->
<h2>Paragraphs and Rules</h2>
<!-- p -->
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<!-- hr -->
<hr>
<!-- p -->
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<h2>Inline Elements</h2>
<!-- p, span, strong -->
<p>Lorem <span>ipsum dolor nato</span> sit amet <strong>strong text</strong>, <em>emphasis consectetur adipisicing elit</em>, <a href="http://www.example.com">link</a>, <cite>Citation</cite>, <code>Inline Code</code> , <abbr title="Cascading Style Sheets">CSS</abbr> sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<!-- h2 -->
<h2>Line and word breaks</h2>
<!-- p, wbr, br -->
<p>For the <wbr> element: Lopadotemachoselachogaleokranioleipsanodrim<wbr>hypotrimmatosilphioparaomelitokatakechymenokichlepikossyphophattoperisteralektryonoptekephallio<wbr>kigklopeleiolagoiosiraiobaphetraganopterygon in a small café in Llanfair<wbr>pwllgwyngyllgogerychwyrndrobwllllanty<wbr>siliogogogoch. Lorem ipsum dolor sit amet<br> consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore<br>et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate</p>
</section>
<section>
<h2>General Headings</h2>
<!-- h1,h2,hgroup -->
<hgroup>
<h1>Headings</h1>
<h2>Headings within a section</h2>
</hgroup>
<!-- h2,h3,hgroup -->
<hgroup>
<h2>Headings</h2>
<h3>Headings within a section</h3>
</hgroup>
<h1>Heading 1</h1>
<h1><span class="dquo">“</span>Heading 1 with quotes”</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<h1>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor</h1>
<h2>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor</h2>
<h3>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor</h3>
<h4>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor</h4>
<h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor</h5>
<h6>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor</h6>
</section>
<section>
<h2>Images and Figures</h2>
<h3>Images in/around content</h3>
<p>Lorem <span>ipsum dolor nato</span> sit amet <strong>strong text</strong>, <em>emphasis consectetur adipisicing elit</em>, <a href="http://www.example.com">link</a>, <cite>Citation</cite>, <code>Inline Code</code> , <abbr title="Cascading Style Sheets">CSS</abbr> sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<!-- p, img -->
<img src ="http://placehold.it/120/006EC4/FFFFFF&text=!" width="120" height="120" alt="Example Image">
<p><img src ="http://placehold.it/12/006EC4/FFFFFF&text=!" width="12" height="12" alt="Example Image"> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. <img src ="http://placehold.it/12/006EC4/FFFFFF&text=!" width="12" height="12" alt="Example Image"> Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
<h3>Figures</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<figure class="image">
<div>
<img src="http://placekitten.site/200/300" alt="Placeholder image">
<figcaption><strong>Figure caption:</strong> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt.</figcaption>
</div>
</figure>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p>In <a href="#figure-1">listing 4</a> we see the primary core interface
API declaration.</p>
<figure id="figure-1">
<figcaption>Listing 4. The primary core interface API declaration.</figcaption>
<pre><code>class Bomb {
boolean setup( someone:Cats, main:Screen ) {
(main as Screen).turnOn();
}
}</code></pre>
</figure>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</section>
<!-- section -->
<section>
<!-- h2 -->
<h2>Divs and Sectioning Elements</h2>
<!-- div -->
<div>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div>
</section>
<section>
<h2>Quotes, Addresses, Inline Style List</h2>
<blockquote>
<p>Paragraph inside Blockquote: Nam libero leo, elementum in, dapibus a, suscipit vitae, purus. Duis arcu. Integer dignissim fermentum enim. Morbi convallis felis vel nibh. Sed scelerisque sagittis lorem.</p>
<p>Paragraph inside Blockquote: Nam libero leo, elementum in, dapibus a, suscipit vitae, purus. Duis arcu. Integer dignissim fermentum enim. Morbi convallis felis vel nibh. Sed scelerisque sagittis lorem.</p>
</blockquote>
<address>1313 Webfoot Walk, Duckburg, Calisota</address>
<pre><strong>Preformated:</strong>Testing one row
and another</pre>
<p>
I am <a href="?abc123">the a tag</a> example<br>
I am <abbr title="test">the abbr tag</abbr> example<br>
I am <b>the b tag</b> example<br>
I am <cite>the cite tag</cite> example<br>
I am <code>the code tag</code> example<br>
I am <del>the del tag</del> example<br>
I am <dfn>the dfn tag</dfn> example<br>
I am <em>the em tag</em> example<br>
I am <i>the i tag</i> example<br>
I am <ins>the ins tag</ins> example<br>
I am <kbd>the kbd tag</kbd> example<br>
I am <q>the q tag <q>inside</q> a q tag</q> example<br>
I am <samp>the samp tag</samp> example<br>
I am <small>the small tag</small> example<br>
I am <span>the span tag</span> example<br>
I am <strong>the strong tag</strong> example<br>
I am <sub>the sub tag</sub> example<br>
I am <sup>the sup tag</sup> example<br>
I am <var>the var tag</var> example<br>
</p>
<ul>
<li>User <bdi>jcranmer</bdi>: 12 posts.
<li>User <bdi>hober</bdi>: 5 posts.
<li>User <bdi>إيان</bdi>: 3 posts.
</ul>
<p><bdo dir="rtl">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</bdo></p>
</section>
<section>
<h2>Lists</h2>
<!-- ul,li -->
<ul>
<li>Unordered list 01</li>
<li>Unordered list 02</li>
<li>Unordered list 03
<ul>
<li>Unordered list inside list level 2</li>
<li>Unordered list inside list level 2
<ul>
<li>Unordered list inside list level 3</li>
<li>Unordered list inside list level 3</li>
</ul>
</li>
</ul>
</li>
</ul>
<!-- ol,li -->
<ol>
<li>Ordered list 01</li>
<li>Ordered list 02</li>
<li>Ordered list 03
<ol>
<li>Ordered list inside list level 2</li>
<li>Ordered list inside list level 2
<ol>
<li>Ordered list inside list level 3</li>
<li>Ordered list inside list level 3</li>
</ol>
</li>
</ol>
</li>
<li>Ordered list</li>
<li>Ordered list</li>
<li>Ordered list</li>
<li>Ordered list</li>
<li>Ordered list</li>
<li>Ordered list</li>
<li>Ordered list</li>
<li>Ordered list</li>
<li>Ordered list</li>
</ol>
<ol reversed>
<li>Ordered list</li>
<li>Ordered list</li>
<li>Ordered list</li>
<li>Ordered list</li>
<li>Ordered list</li>
<li>Ordered list</li>
<li>Ordered list</li>
<li>Ordered list</li>
<li>Ordered list</li>
<li>Ordered list</li>
<li>Ordered list</li>
</ol>
<dl>
<dt>Description list title 01</dt>
<dd>Description list description 01</dd>
<dt>Description list title 02</dt>
<dd>Description list description 02</dd>
<dd>Description list description 03</dd>
</dl>
<!-- figure, legend, ul, li -->
<figure>
<legend>Apples</legend>
<ul>
<li>Granny Smith</li>
<li>Evil Apple of Knowledge</li>
<li>Apple, Inc</li>
</ul>
</figure>
<!-- table, caption, thead, tfoot, tbody, tr, th, td, colgroup, col -->
<table>
<caption>Table Caption</caption>
<colgroup class="example-table-column">
<col class="example-table-column-1" />
<col class="example-table-column-2" />
<col class="example-table-column-3" />
</colgroup>
<thead>
<tr>
<th>Table head th</th>
<td>Table head td</td>
<td>Table head td</td>
</tr>
</thead>
<tfoot>
<tr>
<th>Table foot th</th>
<td>Table foot td</td>
<td>Table foot td</td>
</tr>
</tfoot>
<tbody>
<tr>
<th>Table body th</th>
<td>Table body td</td>
<td>Table body td</td>
</tr>
<tr>
<td>Table body td</td>
<td>Table body td</td>
<td>Table body td</td>
</tr>
</tbody>
</table>
<ul>
<li><a href="/base/" title="">When To Stop</a></li>
<li><a href="/base/" title="">Menu Option</a></li>
<li><a href="/base/" title="">What Can I Do</a></li>
<li><a href="/base/" title="">There is More To Do</a></li>
<li><a href="/base/" title="">Much More</a></li>
</ul>
</section>
<section id="headings-above-paragraphs">
<h2>Headings above paragraphs</h2>
<h2>Level 02 Heading</h2>
<p>Sed scelerisque sagittis lorem. Phasellus sodales. Nulla urna justo, vehicula in, suscipit nec, molestie sed, tellus. Quisque justo. Nam libero leo, elementum in, dapibus a, suscipit vitae, purus. Duis arcu. Integer dignissim fermentum enim. Morbi convallis felis vel nibh. Etiam viverra augue non enim.</p>
<p>Sed scelerisque sagittis lorem. Phasellus sodales. Nulla urna justo, vehicula in, suscipit nec, molestie sed, tellus. Quisque justo. Nam libero leo, elementum in, dapibus a, suscipit vitae, purus. Duis arcu. Integer dignissim fermentum enim. Morbi convallis felis vel nibh. Etiam viverra augue non enim.</p>
<h2>Level 02 Heading</h2>
<p>Sed scelerisque sagittis lorem. Phasellus sodales. Nulla urna justo, vehicula in, suscipit nec, molestie sed, tellus. Quisque justo. Nam libero leo, elementum in, dapibus a, suscipit vitae, purus. Duis arcu. Integer dignissim fermentum enim. Morbi convallis felis vel nibh. Etiam viverra augue non enim.</p>
<h3>Level 03 Heading</h3>
<p>Sed scelerisque sagittis lorem. Phasellus sodales. Nulla urna justo, vehicula in, suscipit nec, molestie sed, tellus. Quisque justo. Nam libero leo, elementum in, dapibus a, suscipit vitae, purus. Duis arcu. Integer dignissim fermentum enim. Morbi convallis felis vel nibh. Etiam viverra augue non enim.</p>
<h4>Level 04 Heading</h4>
<p>Sed scelerisque sagittis lorem. Phasellus sodales. Nulla urna justo, vehicula in, suscipit nec, molestie sed, tellus. Quisque justo. Nam libero leo, elementum in, dapibus a, suscipit vitae, purus. Duis arcu. Integer dignissim fermentum enim. Morbi convallis felis vel nibh. Etiam viverra augue non enim.</p>
<h5>Level 05 Heading</h5>
<p>Sed scelerisque sagittis lorem. Phasellus sodales. Nulla urna justo, vehicula in, suscipit nec, molestie sed, tellus. Quisque justo. Nam libero leo, elementum in, dapibus a, suscipit vitae, purus. Duis arcu. Integer dignissim fermentum enim. Morbi convallis felis vel nibh. Etiam viverra augue non enim.</p>
<h6>Level 06 Heading</h6>
<p>Sed scelerisque sagittis lorem. Phasellus sodales. Nulla urna justo, vehicula in, suscipit nec, molestie sed, tellus. Quisque justo. Nam libero leo, elementum in, dapibus a, suscipit vitae, purus. Duis arcu. Integer dignissim fermentum enim. Morbi convallis felis vel nibh. Etiam viverra augue non enim.</p>
</section>
<section>
<h2>Media</h2>
<!-- device -->
<p>Device: <device type="media"></p>
<!-- audio,source -->
<audio>
<source src="my-mp3.mp3">
<a class="source" href="my-mp3.mp3" type="audio/mpeg">Listen to mp3</a>
</audio>
<!-- video,source -->
<video width="640" height="360">
<source src="myfile.mp4" type="video/mp4">
<a class="source" href="myfile.mp4" type="video/mp4">Watch Video</a>
</video>
</section>
<section>
<h2>Forms</h2>
<!-- form, fieldset, legend, label, input, select, option, textarea, button -->
<form method="post" enctype="multipart/form-data" accept-charset="utf-8">
<fieldset id="" class="">
<legend>Legend</legend>
<div class="field">
<label for="fieldname">Label <abbr class="required" title="Required">*</abbr></label>
<input id="fieldname" type="text" class="text" value="Text">
<p class="hint">This field has a hint</p>
</div>
<div class="field">
<label for="fieldname2">Label <abbr class="required" title="Required">*</abbr></label>
<select id="fieldname2">
<option>Select Box</option>
<option>Select Box 2</option>
<option>Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch</option>
<option>Select Box</option>
<option>Select Box 2</option>
<optgroup label="More options">
<option>Select Box</option>
<option>Select Box 2</option>
<option>Select Box</option>
<option>Select Box 2</option>
</optgroup>
</select>
<p class="hint">This field has a hint</p>
</div>
<div class="field">
<label for="field-fruit">Your favourite fruit:</label>
<input id="field-fruit" type="text" name="fruit" list="field-fruit-list">
<datalist id="field-fruit-list">
<option value="Blackberry">Blackberry</option>
<option value="Blackcurrant">Blackcurrant</option>
<option value="Blueberry">Blueberry</option>
</datalist>
</div>
<div class="field">
<label for="field-keygen">
<keygen name="key" id="field-keygen">
</div>
<div class="field">
<label>Radio Buttons</label>
<p class="hint">This field has a hint</p>
<div class="options">
<label><input type="radio" class="radio" name="radio[]" value="1"> Radio Option 1</label>
<label><input type="radio" class="radio" name="radio[]" value="2"> Radio Option 2</label>
<label><input type="radio" class="radio" name="radio[]" value="3"> Radio Option 3<br>Multi-line</label>
</div>
</div>
<div class="field">
<label>Checkboxes</label>
<p class="hint">This field has a hint</p>
<div class="options">
<label><input type="checkbox" class="checkbox" name="checkbox[]" value="1"> Checkbox Option 1</label>
<label><input type="checkbox" class="checkbox" name="checkbox[]" value="2"> Checkbox Option 2</label>
<label><input type="checkbox" class="checkbox" name="checkbox[]" value="3"> Checkbox Option 3<br>Multi-line</label>
</div>
</div>
<div class="field">
<label for="fieldname3">Label <abbr class="required" title="Required">*</abbr></label>
<textarea id="fieldname3" cols="30" rows="5">Textarea text</textarea>
</div>
<div class="buttons">
<input id="fieldname" type="submit" class="submit" value="Submit">
<button>Button</button>
<input type="image" src="http://placekitten.site/80/28" alt="Image Submit" width="80" height="28">
</div>
</fieldset>
</form>
<form id="form-2" action="#" method="get" accept-charset="utf-8">
<fieldset id="" class="layout">
<legend>Legend</legend>
<div class="field">
<label for="f1">Optional Text input:</label>
<input type="text" id="f1" value="input text">
</div>
<div class="field">
<label for="rt1">Required Text input:</label><input type="text" id="rt1" required>
</div>
<div class="field">
<label for="twp1">Text input with pattern requirement and placeholder:</label><input type="text" pattern="\d{5}(-\d{4})?" title="a US Zip code, with or without the +4 exension" placeholder="12345-6789"/></div>
<div class="field">
<label for="s1">Search input:</label><input type="search" id="s1" />
</div>
<div class="field">
<label for="e1">Email input:</label><input type="email" id="e1" />
</div>
<div class="field">
<label for="u1">URL input:</label><input type="url" id="u1" />
</div>
<div class="field">
<label for="pw">Password input:</label><input type="password" id="pw" value="password" />
</div>
<div class="field">
<label for="f2">Radio input:</label><input type="radio" id="f2" />
</div>
<div class="field">
<label for="f3">Checkbox input:</label><input type="checkbox" id="f3" />
</div>
<div class="field">
<label for="f4">Select field:</label><select id="f4"><option>Option 01</option><option>Option 02</option></select>
</div>
<div class="field">
<label for="f5">Textarea:</label><textarea id="f5" cols="30" rows="5" >Textarea text</textarea>
</div>
<div class="field">
<label for="f6">Input Button:</label> <input type="button" id="f6" value="button text" />
</div>
<div class="field">
<label for="f7">Submit Button:</label> <input type="submit" id="f7" value="button text" />
</div>
<div class="field field-50 field-first">
<label for="fieldname">Label <abbr class="required" title="Required">*</abbr></label>
<input id="fieldname" type="text" class="text" value="Text">
<p class="hint">This field has a hint</p>
</div>
<div class="field field-25">
<label for="fieldname">Label <abbr class="required" title="Required">*</abbr></label>
<input id="fieldname" type="text" class="text" value="Text">
<p class="hint">This field has a hint</p>
</div>
<div class="field field-25">
<label for="fieldname">Label <abbr class="required" title="Required">*</abbr></label>
<select id="fieldname">
<option>Select Box</option>
</select>
<p class="hint">This field has a hint</p>
</div>
<div class="field error field-75 field-first">
<label for="fieldname">Label <abbr class="required" title="Required">*</abbr></label>
<input id="fieldname" type="text" class="text" value="Text">
</div>
<div class="field error field-25">
<label>Radio Buttons</label>
<p class="hint">This field has a hint</p>
<div class="options">
<label><input type="radio" class="radio" name="radio[]" value="4"> Radio Option 4</label>
<label><input type="radio" class="radio" name="radio[]" value="5"> Radio Option 5</label>
<label><input type="radio" class="radio" name="radio[]" value="6"> Radio Option 6</label>
</div>
</div>
<div class="field error field-50 field-first">
<label>Radio Buttons</label>
<p class="hint">This field has a hint</p>
<div class="options">
<label><input type="radio" class="radio" name="radio[]" value="4"> Radio Option 4</label>
<label><input type="radio" class="radio" name="radio[]" value="5"> Radio Option 5</label>
<label><input type="radio" class="radio" name="radio[]" value="6"> Radio Option 6</label>
</div>
</div>
<div class="field error field-50">
<label>Checkboxes</label>
<p class="hint">This field has a hint</p>
<div class="options">
<label><input type="checkbox" class="checkbox" name="checkbox[]" value="4"> Checkbox Option 4</label>
<label><input type="checkbox" class="checkbox" name="checkbox[]" value="5"> Checkbox Option 5</label>
<label><input type="checkbox" class="checkbox" name="checkbox[]" value="6"> Checkbox Option 6</label>
</div>
</div>
<div class="field field-25 field-first">
<label for="fieldname">Label <abbr class="required" title="Required">*</abbr></label>
<textarea id="fieldname3" cols="30" rows="5">Textarea text</textarea>
<p class="hint">This field has a hint</p>
</div>
<div class="field field-25">
<label for="fieldname">Label <abbr class="required" title="Required">*</abbr></label>
<textarea id="fieldname3" cols="30" rows="5">Textarea text</textarea>
<p class="hint">This field has a hint</p>
</div>
<div class="field field-25">
<label for="fieldname">Label <abbr class="required" title="Required">*</abbr></label>
<textarea id="fieldname3" cols="30" rows="5">Textarea text</textarea>
<p class="hint">This field has a hint</p>
</div>
<div class="field field-25">
<label for="fieldname">Label <abbr class="required" title="Required">*</abbr></label>
<textarea id="fieldname3" cols="30" rows="5">Textarea text</textarea>
<p class="hint">This field has a hint</p>
</div>
<div class="field error field-100">
<label for="fieldname3">Label <abbr class="required" title="Required">*</abbr></label>
<textarea id="fieldname3" cols="30" rows="5">Textarea text</textarea>
</div>
<div class="field field-100">
<div class="options">
<label><input type="checkbox" class="checkbox" name="checkbox[]" value="4"> Checkbox Option 4</label>
</div>
</div>
<div class="buttons">
<input id="fieldname" type="submit" class="submit" value="submit">
</div>
</fieldset>
</form>
</section>
<section class="progress window">
<h2>Details & Menus</h2>
<!-- details, progress -->
<h3>Open details</h3>
<details open="open">
<summary>Copying… <progress max="375505392" value="97543282"></progress> 25%</summary>
<dl>
<dt>Transfer rate:</dt>
<dd>452KB/s</dd>
<dt>Local filename:</dt>
<dd>/home/kittens.m4v</dd>
<dt>Remote filename:</dt>
<dd>/var/www/lectures/kittens.m4v</dd>
<dt>Duration:</dt>
<dd>01:16:27</dd>
<dt>Dimensions:</dt>
<dd>320×240</dd>
</dl>
</details>
<h3>Closed details</h3>
<details>
<summary>Closed details: Copying… <progress max="375505392" value="97543282"></progress> 25%</summary>
<dl>
<dt>Transfer rate:</dt>
<dd>452KB/s</dd>
<dt>Local filename:</dt>
<dd>/home/kittens.m4v</dd>
<dt>Remote filename:</dt>
<dd>/var/www/lectures/kittens.m4v</dd>
<dt>Duration:</dt>
<dd>01:16:27</dd>
<dt>Dimensions:</dt>
<dd>320×240</dd>
</dl>
</details>
<meter value="0"></meter>
<meter value="1"></meter>
<meter min=".34" max=".41" value=".36"></meter>
<meter min="50" max="250" low="100" high="200" value="120"></meter>
<meter value=".5" optimum=".8"></meter>
<meter min="1024" max="10240" low="2048" high="8192" value="9216"></meter>
<!-- menu, command -->
<h3>Toolbar Menu</h3>
<menu type="toolbar">
<command type="command" label="Command">
<command type="command" disabled="disabled" label="Command (Disabled)">
<command type="checkbox" checked="checked" label="Checkbox (Checked)">
<command type="checkbox" label="Checkbox (Unchecked)">
<command type="radio" radiogroup="alignment" checked="checked" label="Radiobutton (Checked)">
<command type="radio" radiogroup="alignment" disabled="disabled" label="Radiobutton (Disabled)">
<command type="radio" radiogroup="alignment" label="Radiobutton (Unchecked)">
<menu label="Edit">
<button type="button">Copy</button>
<button type="button">Cut</button>
<button type="button">Paste</button>
</menu>
</menu>
<h3>Context Menu</h3>
<menu type="context">
<command type="command" checked="checked" label="Left">
<option value="" disabled="disabled">-</option>
<command type="checkbox" checked="checked" label="Checked">
<command type="checkbox" label="Unchecked">
<hr>
<command type="radio" radiogroup="alignment" checked="checked" label="Left">
<command type="radio" radiogroup="alignment" label="Center">
<command type="radio" radiogroup="alignment" label="Right">
</menu>
</section>
<section>
<h2>Google Rich Snippets (Microdata)</h2>
<h3>Event Rich Snippet</h3>
<!-- Event -->
<div itemscope itemtype="http://data-vocabulary.org/Event">
<h4><a href="http://www.example.com/events/spinaltap" itemprop="url" ><span itemprop="summary">Spinal Tap</span></a></h4>
<img itemprop="photo" src="http://placekitten.site/400/150">
<div class="excerpt" itemprop="description">
<p>After their highly-publicized search for a new drummer, Spinal Tap kicks off their latest comeback tour with a San Francisco show.</p>
</div>
<div class="meta">
<p class="dates">
When:
<time itemprop="startDate" datetime="2009-10-15T19:00-08:00">Oct 15, 7:00PM</time>—
<time itemprop="endDate" datetime="2009-10-15T19:00-08:00">Oct 15, 9:00PM</time>
</p>
<p class="address">
Where:
<span itemprop="location" itemscope itemtype="http://data-vocabulary.org/Organization">
<span itemprop="name">Warfield Theatre</span>
<span itemprop="address" itemscope itemtype="http://data-vocabulary.org/Address">
<span itemprop="street-address">982 Market St</span>,
<span itemprop="locality">San Francisco</span>,
<span itemprop="region">CA</span>
</span>
<span itemprop="geo" itemscope itemtype="http://data-vocabulary.org/Geo">
<meta itemprop="latitude" content="37.774929">
<meta itemprop="longitude" content="-122.419416">
</span>
</span>
</p>
<p class="category">
Category: <span itemprop="eventType">Concert</span>
</p>
</div>
</div>
<h3>Organisation Rich Snippet</h3>
<!-- Organisation -->
<div itemscope itemtype="http://data-vocabulary.org/Organization">
<h4 itemprop="name">L’Amourita Pizza</h4>
<div class="meta">
<p class="address">
Located at
<span itemprop="address" itemscope itemtype="http://data-vocabulary.org/Address">
<span itemprop="street-address">123 Main St</span>,
<span itemprop="locality">Albuquerque</span>,
<span itemprop="region">NM</span>.
</span>
</p>
<p>
<span class="tel">Phone: <span itemprop="tel">206-555-1234</span><br>
<span class="url"><a href="http://www.example.com" itemprop="url">http://pizza.example.com</a>.</span>
</p>
</div>
<div class="excerpt">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</div>
<!-- Person -->
<div itemscope itemtype="http://data-vocabulary.org/Person">
My name is <span itemprop="name">Bob Smith</span>,
but people call me <span itemprop="nickname">Smithy</span>.
Here is my homepage:
<a href="http://www.example.com" itemprop="url">www.example.com</a>.
I live in
<span itemprop="address" itemscope itemtype="http://data-vocabulary.org/Address">
<span itemprop="locality">Albuquerque</span>,
<span itemprop="region">NM</span>
</span>
and work as an <span itemprop="title">engineer</span>
at <span itemprop="affiliation">ACME Corp</span>.
My friends:
<a href="http://darryl-blog.example.com" rel="friend">Darryl</a>,
<a href="http://edna-blog.example.com" rel="friend">Edna</a>
</div>
<!-- Review -->
<div itemscope itemtype="http://data-vocabulary.org/Review">
<span itemprop="itemreviewed">L’Amourita Pizza</span>
Reviewed by <span itemprop="reviewer">Ulysses Grant</span> on
<time itemprop="dtreviewed" datetime="2009-01-06">Jan 6</time>.
<span itemprop="summary">Delicious, tasty pizza in Eastlake!</span>
<span itemprop="description">L'Amourita serves up traditional wood-fired Neapolitan-style pizza,
brought to your table promptly and without fuss. An ideal neighborhood pizza joint.</span>
Rating: <span itemprop="rating">4.5</span>
</div>
<!-- Review Aggregate -->
<div class="itemscope itemscope-review-aggregate" itemscope itemtype="http://data-vocabulary.org/Review-aggregate">
<span itemprop="itemreviewed">L’Amourita Pizza</span>
<span itemprop="rating" itemscope itemtype="http://data-vocabulary.org/Rating">
<span itemprop="average">9</span>
out of <span itemprop="best">10</span>
</span>
based on <span itemprop="votes">24</span> ratings.
<span itemprop="count">5</span> user reviews.
</div>
<ul class="breadcrumb" role="navigation">
<li class="first" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://www.example.com/dresses" itemprop="url"><span itemprop="title">Dresses</span></a>
</li>
<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://www.example.com/dresses/real" itemprop="url"><span itemprop="title">Real Dresses</span></a>
</li>
<li class="last" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://www.example.com/clothes/dresses/real/green" itemprop="url"><span itemprop="title">Real Green Dresses</span></a>
</li>
</ul>
</section>
<section>
<h2>Other</h2>
<!-- map, area -->
<h3>Image Map</h3>
<img src ="http://placekitten.site/400/200" width="400" height="200" alt="Example Image Map" usemap="#example-image-map">
<map name="example-image-map">
<area shape="rect" coords="0,0,82,126" href="#1" alt="Area One" />