Lesson Hero Illustration Image

Day 7

HTML Tags and Elements: Definitions, Examples, and Relationships

Elements are made up of tags, tags are not made up of elements. Elements are the building blocks 🏗 of HTML.

 

This post is part of the series 30 Days of Web Development.

In this series, we start from the basics and walk through everything you need to know to get started with Web Development.

HTML Tags and Elements: Definitions, Examples, and Relationships

Elements are made up of tags, tags are not made up of elements. Elements are the building blocks 🏗 of HTML.

Yesterday we learned that HTML is a kind of Markup Language. HTML, however, is not the only type of Markup Language. This blog post, for example, is written in Markdown, another type of Markup Language.

I hate when words like this are used in the same paragraph, Markdown 👇 vs. Markup 👆. Markdown - with the down at the end, is a specific type of Markup Language - with the up at the end. The particulars of the format aren't important, just know that there are multiple kinds of Markup Languages (not just HTML).

If I wanted to write a bold word in this blog post, using the Markdown Language, I start and end the word with double asterisks. Like this: **bold word**. In HTML, I would write bold word like this: <b>bold word</b>.

Each Markup language uses its own rules to define blocks of text and assign formatting. HTML does this by using tags and elements.

HTML Tags

HTML tags are special keywords surrounded by a pair of angle brackets <tag keyword>. Most tags come in pairs, with an opening and closing tag. The closing tag is the same as an opening tag with the addition of a forward-slash. The closing bold tag looks like this </b>.

Some tags, like the tag used to display an image <img >, do not have a closing version. This is because you do not need to define an opening and closing to display an image, just a location of where the image can be found.

There are close to 100 HTML tags html-tags. Below are some of the more common ones. If they have a closing tag, I've included it.

HTML Elements

HTML elements are individual components of HTML defined by HTML tags. At first glance, elements and tags can easily be mistaken for the same thing. But they are not. The key thing to remember is that elements are made up of tags, but tags are not made up of elements.

To help clarify, see the following examples of tags vs. elements.

Where tags are used to define the start and stop of an element, elements refer to both the opening and closing tag and everything in-between. The elements that don't require a closing tag, like the <img> element, are called void elements. Elements are the building blocks of a web page and are a concept that we will continue to revisit.

Elements vs. Tag Elements are made up of tags, tags are not made up of elements. Elements are the building blocks of HTML. Example of an element: <p>Paragraph Element</p>, example of a tag <p>

What's next?

Today was all reading and no doing. Tomorrow, we'll change that and get our start playing with tags and elements using VSCode.


  1. In total, there are around 100 different Markup Tags available. A list of them can be found here.

    ↩

The entire source code for this tutorial series can be found in the GitHub repo, which includes all the styles and code samples.

If at any point you feel stuck, have further questions, feel free to reach out to us by:

Get Started Now Background Image

Get started now

Join us on our 30-day journey in Web Development. Learn the basics of HTML, JavaScript, the Terminal and start your journey to becoming a web developer

No spam ever. Easy to unsubscribe.