New Exclusive Deal:
Up To 78% OFF a New Website00
:
03
:
01
:
01
Zyro encyclopedia
Meta tags are HTML tags that contain information about a web page’s metadata.
Since their purpose is to help search engines understand your site, meta tags do not appear on the web pages for visitors to see.
You can find them in the <head> section of an HTML document.
There are many meta tags available to use, each with unique functionality.
Here are some of the most common meta tags to choose from:
Now that you know about the most common meta tags, here are some examples of meta tags you can use on your website.
The first meta tag you are going to see on search engines is the title tag. It is encapsulated in the <title> tag.
<head>
<title>Insert your page title here</title>
</head>
The Meta description tag appears right below the title tag. It is written inside the <meta> tag, followed by the description attribute.
<head>
<title>Insert your page title here</title>
<meta name=”description” content=”Insert meta description here”>
<head>
The Viewport meta tag has a similar structure to the meta description tag. You only need to change the attribute viewport and the content’s desired scaling and dimensions.
<meta name=”viewport” content=”width-device-width, initial scale=1.0”>
If you integrate all of the meta tags in the previous examples, it will look like this:
<!doctype html>
<html lang=”en”>
<head>
<title>Insert your page title here</title>
<meta name=”viewport” content=”width-device-width, initial scale=1.0”>
<meta name=”description” content=”Insert meta description here”>
<body>
<h1>What are meta tags</h1>
Insert relevant information about the heading here
<h2>Most common meta tags</h2>
Insert relevant information about the first subheading here
<h2>Most common meta tags</h2>
Insert relevant information about the second subheading here
</body>
</html>
Should you want to prevent search engine crawlers from indexing a specific page, you can add the following line of code to the <head> section:
<meta name=”robots” content=”noindex”>
While they are not visible to readers, meta tags play a major role in determining your site’s ranking on SERPs.
Meta title tags and descriptions, for example, provide information about your page’s content to users who look up a specific search query. By previewing your website to searchers, you can drive traffic to the site and boost its click-through rate (CTR).
Some meta tags also influence how search engines perceive your website’s content. Robots meta tags are useful for preventing crawlers from indexing certain pages, while canonical tags help you avoid content duplication that earns you a penalty in SERPs.
Meta tags may also contribute to user experience. For example, using the meta content-type ensures your website is rendered correctly by browsers. Meanwhile, viewport meta tags help provide an optimal mobile experience by setting up the page’s visible area on small screens.
That being said, how meta tags impact your chances of ranking in SERPs depends on your type of content and your SEO strategies.
Here is what you need to pay attention to when crafting title tags for your web pages:
Meta descriptions are no less important than title tags. Here are several aspects you need to pay attention to when creating meta descriptions:
Avoid reusing meta descriptions as search engines will see them as duplicate content, which can earn you a penalty that affects ranking.
If you lack time to customize a meta description for each page, you should focus on the ones you think will perform the best in SERPs.
Secondly, you should not forget to include relevant keywords anywhere on your meta descriptions. Otherwise, Google will generate a random generic text from your copy.