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.

  1. strong

    Indicates the text is very important.

  2. h6

    Level 6 heading content.

  3. footer

    Footer content for the document.

  4. code

    Computer code.

  5. input

    Input field.

  6. link

    Not all element names are revealing. The a element and not the link element is for linking to another document. The link 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.

  7. hr

    Horizontal rule. Another one like this is the br element that creates a line break.

Complete and Continue