DEV Community

Cover image for HTML tags to boost your SEO๐Ÿ”๐Ÿš€๐ŸŒ
Devcodesguy
Devcodesguy

Posted on

HTML tags to boost your SEO๐Ÿ”๐Ÿš€๐ŸŒ

What is SEO?

In this article you will find out some HTML tags to boost your SEO and how to rank higher on Google by learning what SEO is.

SEO (Search Engine Optimization) is the technology that helps the search engines to rank a specific website on internet, based on its own keywords.

1๏ธโƒฃ <title> tag ๐Ÿ“

For sure, this tag was the most important SEO tag and itโ€™s still very important for SEO. It is used by the search engines to determine the subject of a particular web page.

<title>Web page title</title>
Enter fullscreen mode Exit fullscreen mode

The reason why <title> tags are really important for SEO is that the search engines are first checking these tags. Also, a

tag is one of the first things that internet users see in the SERPs (Search Engine Results Pages), or better said, the page with the results after you type something in the Google Search.

In nowadays the search engine algorithm is a little different than it used to be in the past. Today search engines still determine what a web page is about just by the <title> tag. But because of the new Googleโ€™s algorithm, the value of the <title> got lower in terms of importance.

Nowadays, search engines are able to determine the content of a web page by analyzing the other HTML elements of a web page. For example, meta description, images, the headers and of course the content of the HTML page as well.

The <title> tag is really important in the direct visual contact that the user has with it. This tag appears in SERPs (Google Search Pages), the tabs of the web browsers and in the content that you are sharing on the social platforms.

To keep it simple: Choose an impactful specific word that describes the best what your web page is about. Try to keep the length of the title under 70 characters long, if not it can be cut in SERPs.

2๏ธโƒฃ Meta description tag ๐Ÿ”–

This tag is used within the

section of the html page. This meta description can be seen inside the snippet of the SERP after the title and the URL of the web page.
<meta name=โ€descriptionโ€ content=โ€Your contentโ€>

This tag is personally my favorite. It helps the search engines to determine what the content of the web page is about. It allows the users to have an idea whether the page does match their research.

This meta description tag appears as well in the SERPs and in the content that you share on the social platforms.

3๏ธโƒฃ The alt attribute ๐Ÿ–ผ

This HTML element does represent the description of the image tag and it is a part of it. This HTML element does represent the description of the image tag and it is a part of it.

<img src=โ€urlโ€ alt=โ€Your clear-cut image descriptionโ€>

The alt attribute does make it easier for the search engines by telling them what a particular image is about also to the users by displaying the description of the image in case the image cannot be loaded.

SEO is really important if you want to rank your business higher on the internet. By making sure that your alt=โ€" attribute is not empty within the <image> tag and by filling them, you increase the chances to rank your website in a higher position than it was before.

4๏ธโƒฃ Responsive Meta tags ๐Ÿ–ฅ๐Ÿ’ป๐Ÿ“ฑ

More than a half of all internet users are browsing the internet using their smartphone. This means that all the website and web pages must be responsive on the smaller screens.

To inform the search engines that your web page is responsive to a smaller screen, you can write the following within the <head> tag.

<meta name="viewport" content="width=device-width, initial-scale=1">

Google said it many times that their algorithm will put first in the searches, the websites which are responsive. Therefore, in order for Google to know if your website is responsive, this meta tag must be added.

Hopefully yโ€™all learnt something by reading HTML tags to boost your SEO article and that you find it helpful! ๐Ÿ™‚

If you want to find out more about what SEO is, I highly recommend this article of Neil Patel.

Top comments (0)