Challenge: Can You Deduce the Meaning of an HTML Element?
What do you think is the semantic meaning of the following HTML elements? Do not look them up. Just use your own intuition and common sense.
-
strong
Indicates the text is very important.
-
h6
Level 6 heading content.
-
footer
Footer content for the document.
-
code
Computer code.
-
input
Input field.
-
link
Not all element names are revealing. The
a
element and not thelink
element is for linking to another document. Thelink
element is used for linking to files used by HTML. For example there is a file that contains CSS that you use when you learn about styling the content using. -
hr
Horizontal rule. Another one like this is the
br
element that creates a line break.