Updated January 20, 2024
HTML tags in SEO are like the foundation of a house. They are the foundation on which your website rests. You want your visitors and web crawlers to like and recommend your content, right? In this article, we will see the tags to know in natural referencing and how tagging plays an essential role in improving the visibility of your content. Because these tags represent much more than simple lines of code: they are one of the keys to making your site shine on the Web.
HTML, or HyperText Markup Language, is the markup language used to create web pages. HTML tags are the basic elements of this language and are used to structure and format the content of a page. Each tag is defined by angle brackets (“ < " And " > » ) and can have an attribute which specifies how it should be interpreted.
➡️ Example of a simple tag: <p>This is a paragraph.</p>
The opening and closing tags follow a hierarchical structure.
In our example, <p>This is a paragraph.</p>,
the paragraph as per <p> and ends with </p>. This structure ensures that the browser correctly translates the content and displays it appropriately.
➡️ Here is a more complex example to illustrate this hierarchy:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Interior decorator</h1>
<p>The text in paragraph form.</p>
</body>
</html>
In this example, <!DOCTYPE html> is the root tag of the document written in HTML5. Inside it, there are several subtags, such as <head> (header) or <body> (body of text). Each of them has a specific role in the structure and functioning of the page.
HTML tags can also have attributes that provide additional information.
➡️ Example to code a hyperlink :
<a href="https://www.exemple.com">Visit our website</a>
Here, the href attribute has the value of the URL to which the link redirects.
➡️ Example to code a picture :
<img src="appartement.jpg" alt="Modernize a Haussmannian apartment">
Here, the img attribute has the value of the displayed image. The src (source) attribute indicates the path to the image (here, "apartment.jpg"). The ALT attribute designates alternative text which is displayed if the image cannot be loaded due to a technical problem or if the user is using a screen reader (visually impaired people). In SEO, the ALT attribute is essential for referencing images.
In web writing, the editor uses on-page and off-page HTML tags to create structured and optimized content. They indicate the importance and hierarchy of content to search engines (Google, Bing, etc.). Markup also improves the readability and understanding of content for Internet users. What HTML Markers Should You Know? Overview !
There title tag is represented by a clickable blue link in the Google results page. It plays a major role in SEO and must attract the attention of Internet users.
Example :
The meta description tag summarizes the content of a web page and must arouse the interest of Internet users. This brief description is visible under the blue link in the SERP (results page).
Example : <meta name="description" content="Découvrez des secrets de décoration intérieure pour créer un chez-vous élégant et chaleureux. Transformez votre espace avec nos astuces." />
The H1 tag represents the main title of the web page (editorial title visible on the page). The H1 can be identical to the title.
Example : <h1>Discover interior design trends</h1>
THE subtitle tags <h2>, <h3, <h4>, etc. prioritize content to guide readers and web crawlers through your words.
Example : <h2>Bedroom decoration</h2>
💡 Please note: remember to respect the order of the H1 to H6 tags to structure your page. Start with H1 for the headline, then H2 for section titles, and so on. For example, avoid going directly from H2 to H4, as this can disorganize the structure and harm accessibility as well as SEO.
The tag paragraph aerates the content of the page. It creates pauses for fluid and understandable reading of your text.
Example : <p>Transform your living space into a haven of peace with our interior design ideas.</p>
The tag bulleted list makes the content more visually appealing and catches the eye of internet users.
Example :
The ordered list tag creates numbered lists and indicates the order of the elements.
Example :
The tag of bolding, highlights the key message and has a significant semantic impact.
Example : <p>For a striking effect, <strong>accent a wall with a contrasting color</strong>.</p>
The tag italics highlights words or phrases for understated emphasis.
Example : <p>Tissues <i>velvet</i> bring a touch of luxury to your decoration.</p>
HTML SEO tags allow you to create quality websites, adapted to the needs of Internet users and the requirements of search engines. Web page markup appears to be essential for several reasons:
How to identify the title? How to inspect HTML elements on a web page? Before publishing an article or web page, it is a good idea to preview the content to ensure that the markup is applied correctly and that it looks as expected.
To check the source code of a web page, follow these simple steps:
It's a good way to understand how a web page is built and identify possible problems.
The SEO META IN 1 CLICK extension is a tool that allows you to check meta tags and other SEO information on a web page at a glance.
W3Schools allows, among other things, to edit and test live code. A handy tool for checking how HTML markers are arranged in web page content. To do this, nothing could be simpler: go to the W3Schools website.
“HTML comments” are elements of code in web pages. They provide space for developers to add annotations, reminders, tips, etc. Think of them as “post-its” that are invisible to site visitors. So, are they read by search engine bots (Googlebot)? According to Google Search team member John Mueller, HTML comments are ignored during indexing contents. They therefore do not serve as a hiding place for keywords that could boost your SEO! HTML comments don't change SEO head-on, but behind the scenes they can have benefits.
💡 Are you interested in the subject? Read my article to know everything.
In web writing, HTML tags in SEO represent the invisible foundations of web pages. They make it possible to prioritize content, optimize organic referencing, and improve the visitor experience (UX). The art of markup is a valuable skill for creating quality web content that will appeal to both readers and web crawlers.
Share on