HTML Text Formatting Tags
📌 HTML Text Formatting Tags List
Tag | Description (काम) | Example |
---|---|---|
<b> | Text को Bold बनाता है | <b>Bold Text</b> |
<strong> | Text को Strong importance (SEO के लिए भी) | <strong>Important Text</strong> |
<i> | Text को Italic बनाता है | <i>Italic Text</i> |
<em> | Emphasized (Important) Text, Screen Readers के लिए Useful | <em>Emphasized Text</em> |
<u> | Text को Underline करता है | <u>Underlined Text</u> |
<mark> | Text को Highlight करता है | <mark>Highlighted Text</mark> |
<small> | Text को छोटा दिखाता है | <small>Small Text</small> |
<del> | Deleted Text (कटे हुए शब्द) दिखाता है | <del>Wrong Text</del> |
<ins> | Inserted (Underlined) Text दिखाता है | <ins>New Text</ins> |
<sub> | Subscript (नीचे छोटा Text) | H<sub>2</sub>O |
<sup> | Superscript (ऊपर छोटा Text) | x<sup>2</sup> |
<code> | Programming Code के लिए Fixed-width Font | <code>print("Hello")</code> |
<q> | Short Quotation (Inverted Comma) | <q>HTML is easy</q> |
<blockquote> | Long Quotation (अलग से दिखेगा) | <blockquote>Learning HTML</blockquote> |
<abbr> | Abbreviation (Tooltip) | <abbr title="HyperText Markup Language">HTML</abbr> |
<cite> | Citation (Book/Work का नाम) | <cite>Ramayana</cite> |
<address> | Address Display करता है | <address>AJ Computer Education, Raya</address> |
✅ Example: Text Formatting Tags in HTML
👉 इसे Run करने पर आपको सभी Text Formatting Tags का Result साफ़ दिखेगा।