Semantic HTML

Below you will find examples for the "A" tags as well as a few others.

Audio

Area

Profile Picture of Corey Alix Glasses

Notice you can click near my glasses to navigate to the main page.

This was also covered in Map

Abbreviations

The WHO was founded in 1948.

Address

John Doe
123 Main Street
Anytown, USA

Article

Article Title

An article tag defines an independent, self-contained content. Articles should make sense on their own and it should be possible to distribute them independently from the rest of the site.

Aside

An aside tag defines content aside from the page content. It should be related to the surrounding content.

<abbr>
The abbr tag is used to define an abbreviation or an acronym. The title attribute specifies the full term.
<address>
The address tag is used to define contact information for the author/owner of a document or an article. The contact information can be a physical address, email address, phone number, social media handle, etc. The author of an article can be identified using the address tag.
<article>
The article tag specifies independent, self-contained content. An article should make sense on its own and it should be possible to distribute it independently from the rest of the site.
<aside>
The aside tag defines content aside from the page content. It should be related to the surrounding content. The aside content should be indirectly related to the surrounding content.
<area>
The area tag defines an area inside an image-map (an image-map is an image with clickable areas). The area tag always belongs inside a map tag. The area tag has two required attributes: href - the URL of the page the link goes to alt - specifies an alternate text for the area, if the image cannot be displayed
<audio>
The audio tag defines sound, such as music or other audio streams. The text between the opening and closing tag will only be displayed in browsers that do not support the audio element.
<br>
The br tag inserts a single line break. The br tag is an empty tag that does not have a closing tag.
<strong>
The strong tag is used to define important text. The content inside the strong tag is typically displayed in bold.