Icon for parent category 'Websites'

Tags & Elements

Earlier, I explained how HTML is a markup language. It marks parts of your content as being something. Like you’d use a marker pen to highlight important parts of a textbook.

How does it achieve this? By using tags, which define elements. Tags usually come in pairs.

  • An opening tag signals the start of an element (e.g. <p>)
  • A closing tag signals that the element is now done (e.g. </p>)

That’s it. That’s 95% of HTML.

The type of tag is what gives the element meaning. If you use a p tag, you tell the computer that the following text is a paragraph. If you use a h1 element, you tell the computer that the following text is a heading.

Example of tags and how they create elements that mean something.
Example of tags and how they create elements that mean something.

Try it! In the example below, I’ve added the raw content of a silly article. Use tags to structure it into headings and paragraphs.

Void elements

Some elements have no (textual) content. For example, an image should point to a file, but doesn’t need any text inside.

These are called “void elements” and they do not need a closing tag!

In other (older) versions of HTML, these would be “self-closing tags”. You were still allowed to omit the closing tag, but the opening tag had to end with />.

Browsers are quite lenient. You might be able to use older or wrong syntax today, and it will help you out and display the webpage just fine. But I recommend that you don’t rely on this: be precise and correct when coding, according to the latest standard.

Nesting tags

The idea of a hierarchy (or structure) is that there are multiple levels. For example, within a paragraph, you might also have a link somewhere. A page might have different sections (a header, a sidebar, a comment section), each of which contain even more marked-up content.

Now you see why HTML works the way it does. Using “tags”, it is very easy to nest elements inside other elements. Tags clearly communicate when an element starts and ends. So, to nest tags, you simply place an element inside another element (before it closes).

As long as you properly open and close your element, you can put it anywhere you want. Often, the bigger element is called the “container”, and the element inside the “content”. I also like calling it an “outer element” with an “inner element” nested inside.

A common beginner’s mistake is to close the outer element while the inner element is still open.

For example: <p><strong></p></strong>. The order is wrong here: first close the inner elements, then the outer ones. If you do this, the browser will try to help you out, but often fail. Try it in the example above!

You can nest elements as much as you want. It’s recommended, however, to not go too far. It’s harder for you to read and understand, which leads to errors and wasted time. (It’s also slower for the computer to display, although you need a really deep nesting to feel the effects of this.)

Conclusion

HTML only has three components. You’ve just learned the first and most important one. I’m naming the others as well, because it helps the learning process to get a complete overview at the start.

  • Tags (opening and closing tag, which mark elements)
  • Attributes
  • Entities

We’ll first explore the most vital tags and when to use them. Then we dive into attributes, and finish the course with entities.

Continue with this course
Support me and this website!

Want to support me?

Buy one of my projects. You get something nice, I get something nice.

Donate through a popular platform using the link below.

Simply giving feedback or spreading the word is also worth a lot.