The em element is an inline element with the
additional semantic of being an emphasis.
Element Name Empty?
Frequently used Attributes
or Attribute Groups Description
div false i18n, core, events Defines a block section. A block may be a
group of paragraphs mixed with tables,
images, and so on.
span false i18n, core, events Defines an inline section that is a portion
of text inside a phrase.
They are the most basic and fundamental elements in an HTML document. The more frequently used
elements of this group are p , br , and the h1 to h6 tags. The first wraps a paragraph, the second adds a
line break (without interrupting the paragraph continuity), and the last are used to define titles and
subtitles.
< h1 > Main title < /h1 >
< p > A small text introduction. < /p >
< h2 > A subtitle < /h2 >
< p > More text goes here. < /p >
< p > ... < /p >
Appendix A: Semantic HTML
580
Element
Name Empty?
Frequently used Attributes
or Attribute Groups Description
abbr false i18n, core, events Is used to enclose an abbreviation.
Pages:
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077