Eternity Coders - Web and Mobile Development Company

Semantic Html

What Is Semantic HTML?

Web Design

Semantic HTML, also known as semantic markup, goes beyond mere presentation by imbuing web pages with meaningful structure. Consider the <p> tag, which explicitly denotes that the enclosed text represents a paragraph. This tag serves a dual purpose: it carries semantic significance for both human understanding (readers recognize it as a paragraph) and for browsers (which interpret and render it accordingly).

 

Conversely, tags like <b> and <i> lack semantic depth. Their primary function is to dictate the visual appearance of text—whether it should be bold or italic—without contributing any inherent meaning to the markup. While these tags influence presentation, they don’t enhance the structural understanding of content.

 

In essence, semantic HTML enriches the web page’s underlying structure with contextual meaning, fostering clarity for both users and automated systems. This approach not only aids in effective communication but also aligns with the principles of web accessibility and search engine optimization, making the content more interpretable across various platforms and devices.

What Are Semantic HTML Tags?

Semantic HTML Tag

Semantic HTML tags, such as <header>, <article>, and <footer>, provide clear meanings for the content they enclose. They go beyond visual structure, conveying the specific role of the information.

 

In contrast, non-semantic tags like <div> and <span> act as content holders without indicating content type or purpose. While useful for layout, they lack the descriptive quality of semantic elements.

 

Choosing semantic HTML enhances both user understanding and search engine optimization, making content more accessible and interpretable across platforms.

Why Do We Need to Use Semantic HTML Tags?

Accessibility

Screen readers rely on semantically-rich HTML to help users with low vision navigate web pages. Semantic tags, like <header>, <footer>, <main>, <nav>, and <aside>, provide clear structure, indicating where users are and how they can interact with the content.

 

Unlike generic <div> and <span> tags, semantic elements enhance accessibility by offering built-in keyboard functionality. For instance, a <button> element can be “clicked” with the enter key, providing a more intuitive experience compared to a generic <div>.

 

Additionally, semantic elements like <table> enable special keyboard controls for efficient navigation within content. Writing clean, semantic HTML not only improves accessibility but also unlocks extra features without additional effort.

 

In summary, using semantic tags appropriately enhances the efficiency of screen reader navigation, making web content more accessible for users with visual impairments.

SEO

Semantic markup, like with assistive technologies, aids search engine crawlers in efficiently navigating and comprehending your webpage. Using semantic HTML is a smart strategy to guide search engines on what to index, optimising your crawl budget for better results.

 

For instance, the <main> tag signifies the primary content, helping search engines identify and prioritize unique page elements. Avoiding unnecessary indexing of repeated elements, you can use <header>, <footer>, and <aside> for less critical content. Additionally, employing the <nav> tag directs bots to your navigation menu, streamlining access to site-wide links. This straightforward approach ensures search engines extract the most value from your webpage during indexing.

Human Readability

Web developers deal with extensive code daily, so anything that simplifies their tasks is valuable. Semantically rich markup offers a quick way for developers to pinpoint specific page elements, eliminating the need to sift through a sea of <div> tags. Need to find the navigation? Just search for the <nav> tag.

 

Readability is crucial, especially when collaborating on a team. You can’t assume that fellow developers (or your future self) will instantly grasp your page structure from code alone. Well-organised content improves efficiency, allowing other developers to swiftly comprehend the structure and facilitating more effective development.

Types of HTML Semantic Tags

Semantic tags play a vital role in defining various parts of a webpage. They are commonly categorised into two groups based on their usage:

  1. HTML Semantic Tags for Structure
  2. HTML Semantic Tags for Text

Numerous semantic HTML tags are designed to convey the layout and structure of a webpage. Termed as “structural” tags, these elements were introduced with the upgrade from HTML4 to HTML5, earning them the moniker of semantic HTML5 tags or elements. These tags serve a dual purpose, providing not only visual layout but also semantic meaning to the content they encapsulate, contributing to clearer and more expressive web development.

 

Here’s a full list:

  • <header>: The header tag defines content that should be considered the introductory information of a page or section
  • <nav>: The navigation tag is used for navigation links. It can be nested within the <header> tag, but secondary navigation <nav> tags are also commonly used elsewhere on the page.
  • <main>: This tag contains the main content (also called the body) of a page. There should be only one tag per page.
  • <article>: The article tag defines content that could stand independently of the page or site it’s on. It does not necessarily mean a “blog post.” Think of it more as “an article of clothing”—a self-contained item that can be used in various contexts.
  • <section>: Using <section> is a way of grouping nearby content of a similar theme. A section tag differs from an article tag. It isn’t necessarily self-contained, but it forms part of something else. 
  • <aside>: An aside element defines content that’s less important. It’s often used for sidebars—areas that add complementary but nonessential information.
  • <footer>: You use <footer> at the bottom of a page. It usually includes contact information, copyright information, and some site navigation.

HTML Semantic Tags for Text

Semantic HTML tags for text go beyond mere formatting; they convey the inherent meaning or function of the text they encapsulate. These tags not only define how the text appears visually but also provide crucial contextual information about the content, enhancing both human comprehension and machine interpretation.

 

Here are some of the most common examples:

  • <h1> (heading): The H1 tag marks the top level heading. There’s usually only one H1 heading per page.
  • <h2> to <h6> (subheadings): The subheadings of various levels of importance. There can be multiple headings of the same level on a single page. 
  • <p> (paragraph): A standalone paragraph of text.
  • <a> (anchor): Used to mark up a hyperlink from one page to another.
  • <ol> (ordered list): A list of items that are displayed in a particular order, starting with bullet points. One <li> (list item) tag contains a single item in the list.
  • <ul> (unordered list): A list of items that do not need to be displayed in a particular order, starting with ordinal numbers. One <li> (list item) tag contains a single item of the list. 
  • <q> / <blockquote>: A quotation of the text. Use <blockquote> for long, multi-line quotations and <q> for shorter, inline quotations.
  • <em> (emphasis): Used for text that should be emphasised.
  • <strong> (strong emphasis): Used for text that should be strongly emphasised.

Other Semantic HTML Tags

  • <img>: An image.
  • <table>: A table with columns and rows of data.
  • <figure> and <figcaption>: Used for images that require a description. <figure> contains the image itself, and <figcaption> contains the caption associated with the image.
  • <iframe>: An embedded element.

Conclusion:

Whether you’re a newcomer to HTML or an experienced developer, taking the time to understand and utilize various HTML tags with semantic precision is crucial. If you’re unsure about the right tag for a specific purpose, invest a few minutes in research – the significance of choosing the appropriate tag cannot be overstated.

For those well-versed in HTML, it’s essential to stay updated on the latest HTML5 elements and their proper application. Despite the familiarity of using div elements with class and id attributes, embracing the accessibility and interoperability advantages of semantic HTML5 tags is a compelling reason for adaptation.

As the internet landscape evolves with increased access and the integration of smart devices into everyday life, the importance of semantic accuracy in markup becomes more evident. Web content is no longer confined to desktop computers and specific browsers. Today, the semantic web is expanding rapidly. By ensuring that every piece of markup adheres to semantic principles, you actively contribute to the continuous growth of the interconnected web, playing a significant role in the evolution of the digital landscape.