Back to glossary

Meta Tags

Meta tags are HTML tags that provide metadata about a webpage. They are placed in the head section of the HTML code and play a significant role in search engine optimization (SEO) by providing search engines with relevant information about a page’s content.

Common Meta Tags and Their Functions

  • Title Tag – Displays the title of a webpage in search engine results pages (SERPs) and browser tabs. The title tag is essential for SEO, as it gives users and search engines an idea of what the page is about.
  • Meta Description – A brief summary of a webpage’s content, displayed below the title tag in SERPs. This tag can influence click-through rates and help search engines understand the page’s topic.
  • Meta Keywords – A now-obsolete tag used to list keywords related to a webpage. Most search engines, including Google, no longer consider this tag for ranking purposes.
  • Meta Robots – Instructs search engine crawlers on how to index and follow links on a webpage. This tag can help control the way search engines interact with a website’s content.
  • Meta Viewport – Controls the dimensions and scaling of a webpage on various devices, ensuring a responsive design for mobile users.
  • Meta Charset – Specifies the character encoding for a webpage, ensuring the correct display of text and special characters.

Here is an example of how some of these meta tags might appear in a webpage’s HTML code:

<head>
  <title>Example Page Title</title>
  <meta name="description" content="This is an example of a meta description.">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <meta charset="UTF-8">
  <meta name="robots" content="index, follow">
</head>

Importance in SEO

Meta tags are essential for effective SEO because they provide search engines with valuable information about a webpage’s content. Properly optimized meta tags can help improve a website’s visibility in search results and increase click-through rates. However, it’s crucial to avoid over-optimization or using misleading information, as search engines may penalize such practices.

More Resources

For more information on meta tags and their role in SEO, consider these resources:

  1. Google’s guide on meta tags
  2. Moz’s comprehensive guide on meta tags