What is an html element?

Html elements are defined by a start tag, some have content in-between the tags and an end tag.

Other elements don't have an end tag they usually have a slash "/" inside the start tag like this one <br/>, and other tags don't have a slash inside they have a start tag only.Those elemets don't need an end tag like this one <hr> and they do not contain any text or child elements.

This html elements are called empty elements because they do not have an end tag and any type of content.Let's look at some examples that are ordered alphabetically...

A

Hyperlink element

<a> </a>

Learn this element

Audio element

<audio> </audio>

Learn this element

Article element

<article> </article>

Learn this element

Address element

<address> </address>

Learn this element

Area element

<area />

Learn this element

Aside element

<aside> </aside>

Learn this element

Abbreviation element

<abbr> </abbr>

Learn this element

B

Body element

<body> </body>

Learn this element

Bi-directional isolation element

<bdi> </bdi>

Learn this element

Blockquote element

<blockquote> </blockquote>

Learn this element