Meta tags are HTML elements that provide metadata about a webpage. They are placed within the <head>
section of the HTML code and help search engines and browsers understand the content of the page. Here’s a breakdown of some common meta tags:
1. Meta Description Tag
- Purpose: Provides a brief description of the webpage’s content.
- Usage: It appears in search engine results pages (SERPs) below the title as a summary of the page.
- Example:
<meta name=”description” content=”This is a blog about healthy recipes and cooking tips.”> - Effect: Although it doesn’t directly affect rankings, a compelling description can improve click-through rates.
2. Meta Robots Tag - Purpose: Tells search engine crawlers (like Googlebot) how to interact with the webpage.
- Directives:
index
/noindex
: Whether or not the page should be indexed by search engines.follow
/nofollow
: Whether or not search engines should follow links on the page.noarchive
: Prevents search engines from storing a cached version of the page.
- Example:
<meta name=”robots” content=”noindex, nofollow”>
3. Meta Keywords Tag (Outdated) - Purpose: Used to provide a list of keywords related to the page’s content.
- Usage: This tag is largely obsolete as search engines like Google no longer use it to rank pages.
- Example:
<meta name="keywords" content="recipes, healthy cooking, food, kitchen">
4. Meta Author Tag - Purpose: Specifies the author of the webpage content.
- Usage: Mainly used for informational purposes.
- Example:
<meta name="author" content="John Doe">
5. Meta Redirection Tag - Purpose: Automatically redirects the user to another webpage after a specified time.
- Usage: Often used for temporary redirects.
- Example (redirecting after 5 seconds):
<meta http-equiv="refresh" content="5;url=https://www.example.com">
Each of these tags serves specific purposes and influences how users, search engines, and browsers interact with your webpage.
मेटा टैग, विवरण, रोबोट, कीवर्ड, लेखक पुनर्निर्देशन टैग क्या हैं
मेटा टैग HTML तत्व होते हैं जो वेबपेज के बारे में मेटाडाटा प्रदान करते हैं। इन्हें HTML कोड के <head>
सेक्शन में रखा जाता है और यह सर्च इंजन और ब्राउज़र को पेज की सामग्री को समझने में मदद करते हैं। आइए इन सामान्य मेटा टैग्स को समझते हैं:
1. मेटा डिस्क्रिप्शन टैग
- उद्देश्य: यह वेबपेज की सामग्री का संक्षिप्त विवरण प्रदान करता है।
- उपयोग: यह सर्च इंजन परिणाम पृष्ठों (SERPs) में शीर्षक के नीचे एक सारांश के रूप में दिखाई देता है।
- उदाहरण:
<meta name="description" content="यह ब्लॉग स्वस्थ व्यंजनों और खाना पकाने के सुझावों के बारे में है।">
- प्रभाव: यद्यपि यह सीधे रैंकिंग को प्रभावित नहीं करता, एक आकर्षक विवरण क्लिक-थ्रू दर (CTR) में सुधार कर सकता है।
2. मेटा रोबोट्स टैग - उद्देश्य: यह सर्च इंजन के क्रॉलर्स (जैसे Googlebot) को बताता है कि वे वेबपेज के साथ कैसे व्यवहार करें।
- निर्देश:
index
/noindex
: पेज को सर्च इंजन द्वारा इंडेक्स किया जाए या नहीं।follow
/nofollow
: सर्च इंजन पेज के लिंक का पालन करें या नहीं।noarchive
: सर्च इंजन को पेज का कैश्ड वर्शन स्टोर करने से रोकता है।
- उदाहरण:
<meta name="robots" content="noindex, nofollow">
3. मेटा कीवर्ड्स टैग (पुराना) - उद्देश्य: पेज की सामग्री से संबंधित कीवर्ड्स की सूची प्रदान करता है।
- उपयोग: यह टैग अब अप्रचलित है क्योंकि Google जैसे सर्च इंजन अब इसका उपयोग रैंकिंग के लिए नहीं करते।
- उदाहरण:
<meta name="keywords" content="व्यंजन, स्वस्थ खाना, भोजन, रसोई">
4. मेटा ऑथर टैग - उद्देश्य: वेबपेज की सामग्री के लेखक को निर्दिष्ट करता है।
- उपयोग: मुख्य रूप से जानकारी के लिए उपयोग किया जाता है।
- उदाहरण:
<meta name="author" content="जॉन डो">
5. मेटा रीडायरेक्शन टैग - उद्देश्य: उपयोगकर्ता को निर्दिष्ट समय के बाद स्वचालित रूप से किसी अन्य वेबपेज पर रीडायरेक्ट करता है।
- उपयोग: आमतौर पर अस्थायी रीडायरेक्शन के लिए उपयोग किया जाता है।
- उदाहरण (5 सेकंड के बाद रीडायरेक्ट करना):
<meta http-equiv="refresh" content="5;url=https://www.example.com">
ये सभी टैग उपयोगकर्ताओं, सर्च इंजनों और ब्राउज़रों के साथ आपके वेबपेज की इंटरैक्शन को प्रभावित करते हैं।