Your cart is currently empty!
Meta Tag
Written by
in Glossary
A meta tag is an HTML tag used in the head section of a webpage to provide metadata—information about the webpage that is not directly visible to users but is useful for web browsers, search engines, and other services. Meta tags help control how a webpage is displayed, indexed, and interacted with by external systems.
Common Uses of Meta Tags:
- SEO (Search Engine Optimization):
Meta tags can influence how search engines understand and rank your page. The two most important for SEO are:
- Meta Title (
<title>
): Defines the title of the webpage, which is displayed on search engine results pages (SERPs) and browser tabs. - Meta Description (
<meta name="description">
): A brief summary of the page’s content. It may be displayed in search engine results under the title, helping users decide whether to click on the link.
- Page Character Set:
- Charset Meta Tag (
<meta charset="UTF-8">
): Specifies the character encoding for the webpage (e.g., UTF-8), ensuring that text is rendered correctly.
- Viewport Settings:
- Viewport Meta Tag (
<meta name="viewport" content="width=device-width, initial-scale=1.0">
): Helps control how the webpage is displayed on different screen sizes, especially mobile devices.
- Robots Meta Tag:
- Meta Robots (
<meta name="robots" content="index, follow">
): Provides instructions to search engines about whether to index the page and follow the links on it.
- Social Media Sharing:
- Open Graph Tags (
<meta property="og:...">
): Used by platforms like Facebook and LinkedIn to control how the page appears when shared on social media. - Twitter Cards (
<meta name="twitter:...">
): Used by Twitter to enhance shared content with rich media like images and summaries.
Example of Meta Tags in HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Learn about meta tags and how they help with SEO and web development.">
<meta name="robots" content="index, follow">
<meta property="og:title" content="What is a Meta Tag?">
<meta property="og:description" content="A detailed guide on meta tags and their usage.">
<meta property="og:image" content="https://example.com/meta-tag-image.jpg">
<title>Meta Tags Explained</title>
</head>
<body>
<h1>Understanding Meta Tags</h1>
</body>
</html>
Types of Meta Tags:
- Basic Meta Tags:
<meta name="description">
: Describes the page content.<meta name="keywords">
: Provides keywords related to the page (though this is less relevant for modern SEO).
- Open Graph Meta Tags (OG Tags):
<meta property="og:title">
: Title for social media sharing.<meta property="og:description">
: Description for social media sharing.<meta property="og:image">
: Image URL for social sharing.
- Twitter Card Meta Tags:
<meta name="twitter:card">
: Specifies the type of card (e.g., summary, summary with image, etc.).<meta name="twitter:title">
: Title for Twitter sharing.
- Security-Related Meta Tags:
<meta http-equiv="Content-Security-Policy">
: Used to implement security policies on the page.<meta http-equiv="X-UA-Compatible">
: Ensures compatibility with older versions of Internet Explorer.
Conclusion:
Meta tags play a vital role in web development, SEO, mobile optimization, and social media sharing. While they are not visible to users, they provide essential information to search engines and social platforms, helping enhance the visibility of your website and improving the user experience.