DEV Community

Cover image for A guide to HTML5 semantic Elements
Ramya Chinnadurai
Ramya Chinnadurai

Posted on • Originally published at ramyachinnadurai.in

A guide to HTML5 semantic Elements

Whenever I start any new website, I just simply starts with the <div> to structure the HTML. But recently I came to know about these semantic tags to structure the website. I was like, oh wait, what all these tags? why should I use it 🤯 ?

Then started my research about these semantic elements, and was like oh god! why I missed this these many days. So thought to share my learnings about these helpful tags.


What is semantic and non-semantic elements?

Semantic elements = elements with a meaning.

A semantic element clearly describes its meaning to both the browser and the developer.

Examples of non-semantic elements: <div> and <span> - Tells nothing about its content.

Examples of semantic elements: <form>, <table>, and <article> - Clearly defines its content.


All good, So why should I use semantic elements?

readable.png

1. It's easier to read

This is probably the first thing you will notice when looking at the first block of code using semantic elements.
This is a small example, but as a programmer, you can be reading through hundreds or thousands of lines of code.
The easier it is to read and understand that code, the easier it makes your job.

2. It has greater accessibility

We are not the only one that finds semantic elements easier to understand.
Search engines and assistive technologies (like screen readers for users with a sight impairment) are also able to better understand the context and content of your website, meaning a better experience for your users.

3. It leads to more consistent code

When creating a header using non-semantic elements, different programmers might write this as <div class="header">, <div id="header">, <div class="head">, or simply <div>.
There are so many ways that you can create a header element, and they all depend on the personal preference of the programmer.
By creating a standard semantic element, it makes it easier for everyone.


Let's discuss some confusing similar tags!

1. <section> and <article>

“What’s the difference?”, you may ask.
Both these elements are used for sectioning content, and yes, they can definitely be used interchangeably. It’s a matter of in which situation.

HTML4 offered only one type of container element, which is <div>.

While this is still used in HTML5, HTML5 provided us with <section> and <article> in a way to replace <div>.

The <section> and <article> elements are conceptually similar and interchangeable. To decide which of these you should choose, take note of the following:

  1. An article is intended to be independently reusable.
  2. A section is a thematic grouping of content.
<section>
  <p>Top Stories</p>
  <section>
    <p>News</p>
    <article>Story 1</article>
    <article>Story 2</article>
    <article>Story 3</article>
  </section>
  <section>
    <p>Sport</p>
    <article>Story 1</article>
    <article>Story 2</article>
    <article>Story 3</article>
  </section>
</section>
Enter fullscreen mode Exit fullscreen mode

2. <header> and <hgroup>

The <header> element is generally found at the top of a document, a section, or an article and usually contains the main heading and some navigation and search tools.

<header>
  <h1>Company A</h1>
  <ul>
    <li><a href="/home">Home</a></li>
    <li><a href="/about">About</a></li>
    <li><a href="/contact">Contact us</a></li>
  </ul>
  <form target="/search">
    <input name="q" type="search" />
    <input type="submit" />
  </form>
</header>
Enter fullscreen mode Exit fullscreen mode

The <hgroup> element should be used where you want the main heading with one or more subheadings.

<hgroup>
  <h1>Heading 1</h1>
  <h2>Subheading 1</h2>
  <h2>Subheading 2</h2>
</hgroup>
Enter fullscreen mode Exit fullscreen mode

REMEMBER, that the <header> element can contain any content, but the <hgroup> element can only contain other headers, that is <h1> to <h6> and including <hgroup>.


3. <figure> and <figcaption>

<figure> is for wrapping your image content around it, and <figcaption> is to caption your image.

<figure>
  <img src="https://en.wikipedia.org/wiki/File:Shadow_of_Mordor_cover_art.jpg" alt="Shadow of Mordor" />
  <figcaption>Cover art for Middle-earth: Shadow of Mordor</figcaption>
</figure>
Enter fullscreen mode Exit fullscreen mode

4. <cite> and <mark>

The <cite> element is used to describe a reference to a cited creative work and must include the title of that work. The reference may be in an abbreviated form according to context-appropriate conventions related to citation metadata.

<figure>
    <blockquote>
        <p>It was a bright cold day in April, and the clocks were striking thirteen.</p>
    </blockquote>
    <figcaption>First sentence in <cite><a href="http://www.george-orwell.org/1984/0.html">Nineteen Eighty-Four</a></cite> by George Orwell (Part 1, Chapter 1).</figcaption>
</figure>
Enter fullscreen mode Exit fullscreen mode

The <mark> element represents text which is marked or highlighted for reference or notation purposes, due to the marked passage's relevance or importance in the enclosing context.

<p>Search results for "salamander":</p>
<hr>
<p>Several species of <mark>salamander</mark> inhabit the temperate rainforest of the Pacific Northwest.</p>
<p>Most <mark>salamander</mark>s are nocturnal, and hunt for insects, worms, and other small creatures.</p>
Enter fullscreen mode Exit fullscreen mode

5. <meter> and <progress>

The <meter> element represents either a scalar value within a known range or a fractional value.

<label for="fuel">Fuel level:</label>

<meter id="fuel"
       min="0" max="100"
       low="33" high="66" optimum="80"
       value="50">
    at 50/100
</meter>

Enter fullscreen mode Exit fullscreen mode

The <progress> element displays an indicator showing the completion progress of a task, typically displayed as a progress bar.

<label for="file">File progress:</label>

<progress id="file" max="100" value="70"> 70% </progress>
Enter fullscreen mode Exit fullscreen mode

Unlike the <meter> element, the minimum value is always 0 for <progress>, and the min attribute is not allowed for the <progress> element.


References

1.https://www.w3schools.com/html/html5_semantic_elements.asp
2.https://developer.mozilla.org/en-US/docs/Web/HTML/Element
3.https://www.freecodecamp.org/news/semantic-html5-elements/


Thanks for taking your time and read this article. It was originally published in my blog.

If you found this article useful, just give a like and follow me on Twitter. Feel free to contact me anytime to discuss or share your ideas.


Top comments (4)

Collapse
 
grahamthedev profile image
GrahamTheDev • Edited

1. Article and Section

Article and Section are certainly not interchangeable.

Article has more semantic meaning and indicates that it's contents are entirely linked together and form part of a single document that could be distributed separately or reused seperately.

You would not want to wrap a whole document (article) in a section element, as <section> is more granular, each <h2> within an article should ideally be the start of a section for example.

The only time they are interchangeable is if you have a list of posts, you could wrap each post in a section or an article, but in this instance an <article> element would be more appropriate.

Your example with the sections isn't great as you need headings for each section that are correctly linked using an ID and aria-labelledby="theIdOfThatSection so the section name is read out:

<!-- this first section should ideally be the `<main>` element, but I have followed the example. -->
<section aria-labelledby="top-stories">
  <h1 id="top-stories">Top Stories</h1>
  <section aria-labelledby="news">
    <h2 id="news">News</h2>
    <article>Story 1</article>
    <article>Story 2</article>
    <article>Story 3</article>
  </section>
  <section aria-labelledby="sport">
    <h2 id="sport">Sport</h2>
    <article>Story 1</article>
    <article>Story 2</article>
    <article>Story 3</article>
  </section>
</section>
Enter fullscreen mode Exit fullscreen mode

Additionally your articles in the above example should really be within an <ul> and <li> so that screen readers know how many articles there are in each section (adding an <ul> around the articles will result in a screen reader announcing "list with 3 items", which is useful information when navigating a page).

<ul>
  <li><article>Story 1</article></li>
  <li><article>Story 2</article></li>
  <li><article>Story 3</article></li>
</ul>
Enter fullscreen mode Exit fullscreen mode

2. hgroup and header

You shouldn't use hgroup. Not only is it not supported by assistive tech but having a <h1> followed immediately by a <h2> is a bad practice.

Instead you should do something similar to:

 <h1>Heading 1
  <span class="subheading1">Subheading 1</span>
  <span class="subheading2">Subheading 2</span>
</h1>
Enter fullscreen mode Exit fullscreen mode

and use CSS to style it. This is assuming the subheadings are actually useful as part of the heading structure, which most of the time they are not and should be different elements.,

Also I am not sure how you are grouping <hgroup> with <header> as they are not related other than beginning with "h".

Finally if you have links within a <header> then they should be within a <nav> element and your search should use a <button> to submit rather than <input type="submit"> as that is an old pattern and a <button> within a form functions like submit.

I also added role="search" to the form and an aria-label to the input for completeness to help assistive tech users.

<header>
  <h1>Company A</h1>
  <nav>
    <ul>
      <li><a href="/home">Home</a></li>
      <li><a href="/about">About</a></li>
      <li><a href="/contact">Contact us</a></li>
    </ul>
  </nav>
  <form target="/search" role="search">
    <input name="q" type="search" aria-label="search the site" />
    <button>Submit</button>
  </form>
</header>
Enter fullscreen mode Exit fullscreen mode

Other examples

The other examples are great, but I thought the above were important points.

The article still gets a ❤ from me as anyone talking about semantic HTML is a hero in my book!

Collapse
 
muhammadrabi profile image
Muhammad Rabi

Great

Collapse
 
aboss123 profile image
Ashish Bailkeri

Nice guide.

Collapse
 
nchandan profile image
NChandan

If u add the images of the tag is would be awesome