forked from MadeByMike/html5-periodic-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1020 lines (1019 loc) · 46.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
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>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/styles.css">
<title>Periodic table of HTML 5 elements</title>
</head>
<body>
<div id="container">
<h1>Periodic table of HTML 5 elements</h1>
<div id="periodic-table">
<div class="row">
<span class="element root"><a href="#html">html</a></span>
<!-- Yes, I know, this sucks -->
<span class="span-15"></span>
<span class="element table"><a href="#col">col</a></span>
<span class="element table"><a href="#table">table</a></span>
</div>
<div class="row">
<span class="element meta"><a href="#head">head</a></span>
<span class="element text"><a href="#span">span</a></span>
<span class="span-9"></span>
<span class="element form"><a href="#fieldset">fieldset</a></span>
<span class="element form"><a href="#form">form</a></span>
<span class="element doc"><a href="#body">body</a></span>
<span class="element doc"><a href="#h1">h1</a></span>
<span class="element doc"><a href="#section">section</a></span>
<span class="element table"><a href="#colgroup">colgroup</a></span>
<span class="element table"><a href="#tr">tr</a></span>
</div>
<div class="row">
<span class="element meta"><a href="#title">title</a></span>
<span class="element text"><a href="#a">a</a></span>
<span class="span-9"> </span>
<span class="element form"><a href="#meter">meter</a></span>
<span class="element form"><a href="#select">select</a></span>
<span class="element doc"><a href="#aside">aside</a></span>
<span class="element doc"><a href="#h2">h2</a></span>
<span class="element doc"><a href="#header">header</a></span>
<span class="element table"><a href="#caption">caption</a></span>
<span class="element table"><a href="#td">td</a></span>
</div>
<div class="row">
<span class="element meta"><a href="#meta">meta</a></span>
<span class="element text"><a href="#rt">rt</a></span>
<span class="element text"><a href="#dfn">dfn</a></span>
<span class="element text"><a href="#em">em</a></span>
<span class="element text"><a href="#i">i</a></span>
<span class="element text"><a href="#small">small</a></span>
<span class="element text"><a href="#ins">ins</a></span>
<span class="element group"><a href="#hr">hr</a></span>
<span class="element group"><a href="#p">p</a></span>
<span class="element group"><a href="#div">div</a></span>
<span class="element group"><a href="#blockquote">blockquote</a></span>
<span class="element form"><a href="#legend">legend</a></span>
<span class="element form"><a href="#optgroup">optgroup</a></span>
<span class="element doc"><a href="#address">address</a></span>
<span class="element doc"><a href="#h3">h3</a></span>
<span class="element doc"><a href="#nav">nav</a></span>
<span class="element interactive"><a href="#menu">menu</a></span>
<span class="element table"><a href="#th">th</a></span>
</div>
<div class="row">
<span class="element meta"><a href="#base">base</a></span>
<span class="element text"><a href="#rp">rp</a></span>
<span class="element text"><a href="#abbr">abbr</a></span>
<span class="element text"><a href="#time">time</a></span>
<span class="element text"><a href="#b">b</a></span>
<span class="element text"><a href="#strong">strong</a></span>
<span class="element text"><a href="#del">del</a></span>
<span class="element group"><a href="#br">br</a></span>
<span class="element group"><a href="#figcaption">figcaption</a></span>
<span class="element group"><a href="#ol">ol</a></span>
<span class="element group"><a href="#dl">dl</a></span>
<span class="element form"><a href="#label">label</a></span>
<span class="element form"><a href="#option">option</a></span>
<span class="element doc"><a href="#datalist">datalist</a></span>
<span class="element doc"><a href="#h4">h4</a></span>
<span class="element doc"><a href="#article">article</a></span>
<span class="element interactive"><a href="#command">command</a></span>
<span class="element table"><a href="#tbody">tbody</a></span>
</div>
<div class="row">
<span class="element meta"><a href="#link">link</a></span>
<span class="element meta"><a href="#noscript">noscript</a></span>
<span class="element text"><a href="#q">q</a></span>
<span class="element text"><a href="#var">var</a></span>
<span class="element text"><a href="#sub">sub</a></span>
<span class="element text"><a href="#mark">mark</a></span>
<span class="element text"><a href="#kbd">kbd</a></span>
<span class="element text"><a href="#wbr">wbr</a></span>
<span class="element group"><a href="#figure">figure</a></span>
<span class="element group"><a href="#ul">ul</a></span>
<span class="element group"><a href="#dt">dt</a></span>
<span class="element form"><a href="#input">input</a></span>
<span class="element form"><a href="#output">output</a></span>
<span class="element form"><a href="#keygen">keygen</a></span>
<span class="element doc"><a href="#h5">h5</a></span>
<span class="element doc"><a href="#footer">footer</a></span>
<span class="element interactive"><a href="#summary">summary</a></span>
<span class="element table"><a href="#thead">thead</a></span>
</div>
<div class="row">
<span class="element meta"><a href="#style">style</a></span>
<span class="element meta"><a href="#script">script</a></span>
<span class="element text"><a href="#cite">cite</a></span>
<span class="element text"><a href="#samp">samp</a></span>
<span class="element text"><a href="#sup">sup</a></span>
<span class="element text"><a href="#ruby">ruby</a></span>
<span class="element text"><a href="#bdo">bdo</a></span>
<span class="element text"><a href="#code">code</a></span>
<span class="element group"><a href="#pre">pre</a></span>
<span class="element group"><a href="#li">li</a></span>
<span class="element group"><a href="#dd">dd</a></span>
<span class="element form"><a href="#textarea">textarea</a></span>
<span class="element form"><a href="#button">button</a></span>
<span class="element form"><a href="#progress">progress</a></span>
<span class="element doc"><a href="#h6">h6</a></span>
<span class="element doc"><a href="#hgroup">hgroup</a></span>
<span class="element interactive"><a href="#details">details</a></span>
<span class="element table"><a href="#tfoot">tfoot</a></span>
</div>
</div>
<div id="f-block">
<div class="row">
<span class="element embed"><a href="#img">img</a></span>
<span class="element embed"><a href="#area">area</a></span>
<span class="element embed"><a href="#map">map</a></span>
<span class="element embed"><a href="#embed">embed</a></span>
<span class="element embed"><a href="#object">object</a></span>
<span class="element embed"><a href="#param">param</a></span>
<span class="element embed"><a href="#source">source</a></span>
<span class="element embed"><a href="#iframe">iframe</a></span>
<span class="element embed"><a href="#canvas">canvas</a></span>
<span class="element embed"><a href="#track*">track*</a></span>
<span class="element embed"><a href="#audio">audio</a></span>
<span class="element embed"><a href="#video">video</a></span>
<span class="element embed"><a href="#device*">device*</a></span>
</div>
</div>
</div>
<ul class="key">
<li><span class="swatch root"></span> Root element</li>
<li><span class="swatch text"></span> Text-level semantics</li>
<li><span class="swatch form"></span> Forms</li>
<li><span class="swatch table"></span> Tabular data</li>
<li><span class="swatch meta"></span> Metadata and scripting</li>
<li><span class="swatch group"></span> Grouping content</li>
<li><span class="swatch doc"></span> Document sections</li>
<li><span class="swatch interactive"></span> Interactive elements</li>
<li><span class="swatch embed"></span> Embedding content</li>
</ul>
<div id="descriptions">
<div class="info" id="html">
<h3><html></h3>
<p>Document root element.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/html">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="col">
<h3><col></h3>
<p>Columns in a table.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/col">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/tabular-data.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="table">
<h3><table></h3>
<p>Table of multi-dimensional data.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/table">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/tabular-data.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="head">
<h3><head></h3>
<p>First element of the HTML document. Contains document metadata.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/head">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="span">
<h3><span></h3>
<p>Container with no semantic meaning.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/span">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="div">
<h3><div></h3>
<p>Container with no semantic meaning.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/div">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/grouping-content.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="fieldset">
<h3><fieldset></h3>
<p>Set of form controls grouped by theme.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/fieldset">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/rendering.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="form">
<h3><form></h3>
<p>Form.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/form">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/forms.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="body">
<h3><body></h3>
<p>Document content.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/body">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/sections.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="h1">
<h3><h1></h3>
<p>Heading for the current section.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/hn/">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/sections.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="section">
<h3><section></h3>
<p>Contains elements grouped by theme, for example a chapter or tab box.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/section">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/sections.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="colgroup">
<h3><colgroup></h3>
<p>Defines a group of columns in a table.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/colgroup">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/tabular-data.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="tr">
<h3><tr></h3>
<p>A row of cells.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/tr">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/tabular-data.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="title">
<h3><title></h3>
<p>Document title.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/title">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="a">
<h3><a></h3>
<p>Hyperlink.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/a">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="pre">
<h3><pre></h3>
<p>Text that is preformatted in the HTML code.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/pre">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/grouping-content.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="meter">
<h3><meter></h3>
<p>Control for entering a numeric value in a known range.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/meter">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/rendering.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="select">
<h3><select></h3>
<p>Control for selecting from multiple options.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/select">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/rendering.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="aside">
<h3><aside></h3>
<p>Content related to surrounding elements that doesn't belong inline, such as a advertising or quotes.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/aside">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/sections.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="h2">
<h3><h2></h3>
<p>Heading for the current section.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/hn/">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/sections.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="header">
<h3><header></h3>
<p>Navigation or introductory elements for the current section.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/header">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/sections.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="caption">
<h3><caption></h3>
<p>Title of a table.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/caption">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/tabular-data.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="td">
<h3><td></h3>
<p>Table cell.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/td">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/tabular-data.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="meta">
<h3><meta></h3>
<p>Document metadata that can't be represented with other elements.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/meta">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="rt">
<h3><rt></h3>
<p>Annotation of preceding text.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/rt">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="dfn">
<h3><dfn></h3>
<p>Term being defined by the parent section.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/phrase_elements">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="em">
<h3><em></h3>
<p>Text that should be emphasised.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/phrase_elements">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="i">
<h3><i></h3>
<p>Text in a alternate voice or mood, such as a technical term.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/i">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="small">
<h3><small></h3>
<p>An aside, such as fine print.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/small">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="ins">
<h3><ins></h3>
<p>Text that has been inserted during document editing.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/ins">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/edits.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="s">
<h3><s></h3>
<p>Text that is outdated or no longer accurate.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/s">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="br">
<h3><br></h3>
<p>Line break.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/br">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="p">
<h3><p></h3>
<p>Paragraph content.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/p">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/grouping-content.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="blockquote">
<h3><blockquote></h3>
<p>Quote from another source.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/blockquote">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/grouping-content.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="legend">
<h3><legend></h3>
<p>Define a name for a fieldset.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/legend">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/forms.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="optgroup">
<h3><optgroup></h3>
<p>Group of option.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/optgroup">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/the-button-element.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="address">
<h3><address></h3>
<p>Contact information for the current article.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/address">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/sections.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="h3">
<h3><h3></h3>
<p>Heading for the current section.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/hn/">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/sections.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="nav">
<h3><nav></h3>
<p>Contains a collection of links.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/nav">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/sections.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="menu">
<h3><menu></h3>
<p>Set of commands.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/menu">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/interactive-elements.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="th">
<h3><th></h3>
<p>Table heading.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/th">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/tabular-data.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="base">
<h3><base></h3>
<p>Specifies URL which non-absolute URLs are relative to.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/base">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="rp">
<h3><rp></h3>
<p>Contains semantically meaningless markup for browsers that don't understand ruby annotations.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/rp">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="abbr">
<h3><abbr></h3>
<p>Abbreviation or acronym.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/abbr">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="time">
<h3><time></h3>
<p>Time defined in a machine readable format.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/time">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/rendering.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="b">
<h3><b></h3>
<p>Stylistically separated text of equal importance, such as a product name.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/b">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="strong">
<h3><strong></h3>
<p>Text that is important.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/phrase_elements">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="del">
<h3><del></h3>
<p>Text that has been removed during document editing.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/del">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/edits.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="kbd">
<h3><kbd></h3>
<p>Example input (usually keyboard) for a program.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/phrase_elements">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="hr">
<h3><hr></h3>
<p>Thematic break within a paragraph.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/hr">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/rendering.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="ol">
<h3><ol></h3>
<p>Ordered list.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/ol">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/grouping-content.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="dl">
<h3><dl></h3>
<p>List of term-description pairs.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/dl">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/grouping-content.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="label">
<h3><label></h3>
<p>Caption for a form control.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/label">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/forms.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="option">
<h3><option></h3>
<p>Single option within a select control.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/option">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/the-button-element.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="datalist">
<h3><datalist></h3>
<p>Define sets of options.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/datalist">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/the-button-element.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="h4">
<h3><h4></h3>
<p>Heading for the current section.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/hn/">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/sections.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="article">
<h3><article></h3>
<p>Section of the page content, such as a blog or forum post.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/article">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/sections.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="command">
<h3><command></h3>
<p>Command the user can perform, such as publishing an article.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/command">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/interactive-elements.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="tbody">
<h3><tbody></h3>
<p>Contains rows that hold the table's data.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/tbody">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/tabular-data.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="link">
<h3><link></h3>
<p>Other resources related to the document.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/link">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="noscript">
<h3><noscript></h3>
<p>Contains elements that are part of the document only if scripting is disabled.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/noscript">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/scripting-1.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="q">
<h3><q></h3>
<p>Quoted text.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/q">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="var">
<h3><var></h3>
<p>Mathematical or programming variable.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/phrase_elements">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="sub">
<h3><sub></h3>
<p>Subscript text.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/sup">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="mark">
<h3><mark></h3>
<p>Text highlighted for referencing elsewhere.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/mark">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="bdi">
<h3><bdi></h3>
<p>Text that is separated from directional formatting of its surroundings.</p>
<ul class="links">
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="wbr">
<h3><wbr></h3>
<p>Opportunity for a line break.</p>
<ul class="links">
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="figcaption">
<h3><figcaption></h3>
<p>Caption for a figure.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/figcaption">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/grouping-content.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="ul">
<h3><ul></h3>
<p>Unordered list.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/ul">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/grouping-content.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="dt">
<h3><dt></h3>
<p>Term which will be described.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/dt">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/grouping-content.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="input">
<h3><input></h3>
<p>Generic form input.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/input">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/the-input-element.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="output">
<h3><output></h3>
<p>Contains the results of a calculation.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/output">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/the-button-element.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="keygen">
<h3><keygen></h3>
<p>Generates private-public key pairs.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/keygen">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/rendering.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="h5">
<h3><h5></h3>
<p>Heading for the current section.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/hn/">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/sections.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="footer">
<h3><footer></h3>
<p>Footer of the current section.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/footer">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/sections.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="summary">
<h3><summary></h3>
<p>Caption of a details element.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/summary">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/interactive-elements.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="thead">
<h3><thead></h3>
<p>Contains rows with table headings.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/thead">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/tabular-data.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="style">
<h3><style></h3>
<p>Styling defined inline data.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/style">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="script">
<h3><script></h3>
<p>Inline or linked client side scripts.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/script">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/scripting-1.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="cite">
<h3><cite></h3>
<p>Title of a referenced piece of work.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/phrase_elements">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="samp">
<h3><samp></h3>
<p>Sample output of a program.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/phrase_elements">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="sup">
<h3><sup></h3>
<p>Superscript text.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/sup">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="ruby">
<h3><ruby></h3>
<p>Contains text with annotations, such as pronounciation hints. Commonly used in East Asian text.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/ruby">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="bdo">
<h3><bdo></h3>
<p>Defines directional formatting for content.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/bdo">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="code">
<h3><code></h3>
<p>Fragment of code.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/phrase_elements">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/text-level-semantics.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="figure">
<h3><figure></h3>
<p>Contains elements related to single concept, such as an illustration or code example.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/figure">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/grouping-content.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="li">
<h3><li></h3>
<p>List item.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/li">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/grouping-content.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="dd">
<h3><dd></h3>
<p>Description for the preceding term.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/dd">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/grouping-content.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="textarea">
<h3><textarea></h3>
<p>Multiline free-form text input.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/textarea">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/rendering.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="button">
<h3><button></h3>
<p>A button.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/button">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/rendering.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="progress">
<h3><progress></h3>
<p>Control for displaying progress of a task.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/progress">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/rendering.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="h6">
<h3><h6></h3>
<p>Heading for the current section.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/hn/">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/sections.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="hgroup">
<h3><hgroup></h3>
<p>Collection of headings for the current section. The highest ranked heading represents the group in the document outline.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/hgroup">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/sections.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="details">
<h3><details></h3>
<p>Contains additional information, such as the contents of an accordian view.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/details">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/rendering.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="tfoot">
<h3><tfoot></h3>
<p>Contains rows with summary of data.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/tfoot">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/tabular-data.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="img">
<h3><img></h3>
<p>An image.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/img">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/embedded-content-1.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="area">
<h3><area></h3>
<p>Hyperlink area in an image map.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/area">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/the-map-element.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="map">
<h3><map></h3>
<p>Image map for adding hyperlinks to parts of an image.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/map">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/the-map-element.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="embed">
<h3><embed></h3>
<p>Reference to non-HTML content.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/embed">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/the-iframe-element.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="object">
<h3><object></h3>
<p>External resource such as an image, iframe or plugin.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/object">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/the-iframe-element.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="param">
<h3><param></h3>
<p>Parameters for the parent object.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/param">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/the-iframe-element.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="source">
<h3><source></h3>
<p>Alternative sources for parent video or audio elements.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/source">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/video.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="iframe">
<h3><iframe></h3>
<p>Nested browser frame.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/iframe">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/the-iframe-element.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="canvas">
<h3><canvas></h3>
<p>Bitmap which is editable by client side scripts.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/canvas">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/the-canvas-element.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="track">
<h3><track></h3>
<p>Specifies external timing track for media elements.</p>
<ul class="links">
<li><a href="http://www.w3.org/TR/html5/the-iframe-element.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="audio">
<h3><audio></h3>
<p>Audio file.</p>
<ul class="links">
<li><a href="https://developer.mozilla.org/en/HTML/Element/audio">Mozilla</a></li>
<li><a href="http://www.w3.org/TR/html5/the-iframe-element.html">W3C Reference</a></li>
</ul>
</div>
<div class="info" id="video">
<h3><video></h3>