HTML में Title और Footer दोनों ही web page के important parts होते हैं।
Title user को page के बारे में जानकारी देता है, जबकि Footer page के अंत में extra information show करता है।
ये दोनों elements user experience और website structure को बेहतर बनाने में मदद करते हैं।
Title in HTML
Title का उपयोग web page का नाम दिखाने के लिए किया जाता है।
यह browser के tab (ऊपर वाले हिस्से) में दिखाई देता है।
Title हमेशा <head> section के अंदर लिखा जाता है।
Example:
<head>
<title>My First Website</title>
</head>Give feedback
Title की विशेषताएँ
- Browser tab में दिखाई देता है
- SEO (Search Engine Optimization) के लिए important होता है
- Page की पहचान बताता है
- Bookmark करने पर यही नाम save होता है
Title का महत्व
जब user कई tabs open करता है, तो Title ही पहचान देता है कि कौन सा page किस बारे में है।
अगर Title सही और meaningful हो, तो user experience बेहतर होता है।
Footer in HTML
Footer web page का आखिरी हिस्सा होता है, जिसमें additional information दी जाती है।
यह आमतौर पर हर page के नीचे दिखाई देता है।
HTML5 में Footer के लिए <footer> tag का उपयोग किया जाता है।
Example:
<footer>
<p>© 2026 My Website</p>
<p>Contact: info@example.com</p>
</footer>Give feedback
Footer में क्या-क्या होता है
Footer में आमतौर पर ये चीजें शामिल होती हैं:
- Copyright information
- Contact details
- Important links (Privacy Policy, Terms)
- Social media links
- Author या company information
Footer का उपयोग क्यों किया जाता है
Footer user को extra information देने के लिए use किया जाता है, जो main content में नहीं होती।
यह website को professional और complete look देता है।
Title और Footer का अंतर
| Feature | Title | Footer |
|---|---|---|
| Location | Browser tab में | Page के नीचे |
| Tag | <title> | <footer> |
| Purpose | Page का नाम दिखाना | Extra information देना |
| Visibility | Direct page में नहीं दिखता | Page में दिखता है |
Important Points
- Title हमेशा
<head>में लिखा जाता है - Footer हमेशा
<body>में होता है - Title SEO के लिए बहुत important है
- Footer user navigation और information के लिए useful है
Exam Point of View
- Title tag का syntax पूछा जाता है
- Footer tag HTML5 का important concept है
- Difference between Title and Footer पूछा जा सकता है
- Simple example लिखना आना चाहिए