HTML Text Formatting Tags

 

HTML Text Formatting Tags


📌 HTML Text Formatting Tags List

TagDescription (काम)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

<!DOCTYPE html> <html> <head> <title>Text Formatting Example</title> </head> <body> <h1>AJ Computer Education</h1> <p><b>Bold</b> और <strong>Strong</strong> Text</p> <p><i>Italic</i> और <em>Emphasized</em> Text</p> <p><u>Underline</u> और <mark>Highlighted</mark> Text</p> <p><small>Small Text</small> और <del>Deleted Text</del> तथा <ins>Inserted Text</ins></p> <p>Chemical Formula: H<sub>2</sub>O</p> <p>Math: X<sup>2</sup> + Y<sup>2</sup></p> <p><code>print("Hello World")</code></p> <p><q>HTML is simple</q></p> <blockquote>AJ Computer Education Students are learning HTML.</blockquote> <p><abbr title="HyperText Markup Language">HTML</abbr> सीखना जरूरी है।</p> <p><cite>Ramayana</cite> एक महान ग्रंथ है।</p> <address> AJ Computer Education, Ayrakhera Road, Raya Contact: 8859070072 </address> </body> </html>

👉 इसे Run करने पर आपको सभी Text Formatting Tags का Result साफ़ दिखेगा।

Post a Comment