Introducing HTML Tags

Standard HTML Tags

The HTML markup language is made up of lots of different kinds of "tags". Most tags follow this format:

A graphic explaining html tags

A simple example:

<p>This is a paragraph.</p>

Self Closing HTML Tags

Some HTML tags (like img and br) don't have their own content. These are known as self closing tags or empty tags. They look like this:

A graphic explaining html tags

A simple example:

<br />

The br tag inserts a line break (not a paragraph break). This tag has no content, so it is self closing.

With thanks to Alissa Miller.