Image to Video Tool




Image to Video Converter

Image to Video Converter

HTML Text Formatting Tegs क्या होते हैं?

 HTML टेक्स्ट फॉर्मेटिंग टैग्स आपकी वेबसाइट के कंटेंट को बेहतर दिखाने और SEO के लिए ऑप्टिमाइज़ करने में मदद करते हैं। <b> और <strong> का उपयोग महत्वपूर्ण टेक्स्ट को बोल्ड करने के लिए किया जाता है। 

जबकि <i> और <em> टेक्स्ट को italic और emphasized दिखाने में मदद करते हैं। <mark> टैग किसी भी महत्वपूर्ण शब्द को highlight करने के लिए उपयोगी होता है, जिससे पाठक तुरंत उसे नोटिस कर सकें। वहीं, <small> छोटे टेक्स्ट को दिखाने में मदद करता है, जैसे कि फाइन प्रिंट या डिस्क्लेमर।

HTML Text Formatting Tegs क्या होते हैं?


अगर आप टेक्स्ट को अधिक प्रभावशाली बनाना चाहते हैं, तो <del> और <ins> का उपयोग कर सकते हैं, जिससे यह दिखाया जा सकता है कि कोई शब्द हटाया गया है या नया जोड़ा गया है। 

<sub> और <sup> टैग वैज्ञानिक और गणितीय फॉर्मूलों के लिए जरूरी होते हैं, जैसे H<sub>2</sub>O (पानी का केमिकल फॉर्मूला) या 10<sup>2</sup> (10 का स्क्वायर)। ये सभी HTML टैग्स न केवल आपके वेबपेज की readability को सुधारते हैं, बल्कि सर्च इंजन ऑप्टिमाइजेशन (SEO) में भी मदद करते हैं, जिससे आपकी वेबसाइट सर्च रिजल्ट में बेहतर रैंक कर सकती है।


<b> - Bold text

<strong> - Important text

<i> - Italic text

<em> - Emphasized text

<mark> - Marked text

<small> - Smaller text

<del> - Deleted text

<ins> - Inserted text

<sub> - Subscript text

<sup> - Superscript


HTML में टेक्स्ट को फॉर्मेट करने के लिए अलग-अलग टैग होते हैं। आइए हर टैग का एक-एक उदाहरण देखें:


1. Bold Text (<b>)

यह टैग टेक्स्ट को बोल्ड करता है।

Example:


<p>This is <b>bold</b> text.</p>

Output:

This is bold text.


2. Important Text (<strong>)

इसका उपयोग किसी टेक्स्ट को महत्वपूर्ण दिखाने के लिए किया जाता है।

Example:


<p>This is <strong>important</strong> text.</p>

Output:

This is important text.


3. Italic Text (<i>)

यह टेक्स्ट को italic स्टाइल में दिखाता है।

Example:


<p>This is <i>italic</i> text.</p>

Output:

This is italic text.


4. Emphasized Text (<em>)

इसका उपयोग टेक्स्ट को जोर देकर पढ़ाने के लिए किया जाता है।

Example:


<p>This is <em>emphasized</em> text.</p>

Output:

This is emphasized text.


5. Marked Text (<mark>)

इसका उपयोग टेक्स्ट को highlight करने के लिए किया जाता है।

Example:


<p>This is <mark>highlighted</mark> text.</p>

Output:

This is <mark>highlighted</mark> text.


6. Smaller Text (<small>)

यह टेक्स्ट को छोटे साइज में दिखाता है।

Example:


<p>This is <small>small</small> text.</p>

Output:

This is <small>small</small> text.


7. Deleted Text (<del>)

यह टेक्स्ट को कटे हुए (strike-through) दिखाने के लिए उपयोग किया जाता है।

Example:


<p>This is <del>deleted</del> text.</p>

Output:

This is deleted text.


8. Inserted Text (<ins>)

इसका उपयोग नए जोड़े गए टेक्स्ट को दिखाने के लिए किया जाता है।

Example:


<p>This is <ins>inserted</ins> text.</p>

Output:

This is <ins>inserted</ins> text.


9. Subscript Text (<sub>)

इसका उपयोग सबस्क्रिप्ट (नीचे लिखा हुआ) टेक्स्ट के लिए किया जाता है, जैसे कि केमिकल फॉर्मूला।

Example:


<p>H<sub>2</sub>O is the chemical formula for water.</p>

Output:

H₂O is the chemical formula for water.


10. Superscript Text (<sup>)

इसका उपयोग superscript (ऊपर लिखा हुआ) टेक्स्ट के लिए किया जाता है, जैसे कि गणितीय घातांक (exponent)।

Example:


<p>2<sup>3</sup> = 8</p>

Output:

2³ = 8


HTML Text Formatting Tegs क्या होते हैं?

HTML में इन टेक्स्ट फॉर्मेटिंग टैग्स का उपयोग करके आप अपने वेबपेज के टेक्स्ट को बेहतर बना सकते हैं। <b> और <strong>, <i> और <em> में semantic अंतर होता है, लेकिन दिखने में ये लगभग समान होते हैं।


Read Also