html textformating tags | textformating tags kya hei #html #html_tags

HTML Textformating Tags 

HTML text formatting tags are used to apply various styles and formatting to the text within an HTML document. Here are some commonly used text formatting tags in HTML:

  1. <b>: This tag is used to make the enclosed text bold. Example: <b>This text is bold</b>

  2. <i>: This tag is used to make the enclosed text italicized. Example: <i>This text is italicized</i>

  3. <u>: This tag is used to underline the enclosed text. Example: <u>This text is underlined</u>

  4. <s>: This tag is used to strike through the enclosed text. Example: <s>This text is struck through</s>

  5. <sub>: This tag is used to create subscript text. Example: <sub>This text is subscript</sub>

  6. <sup>: This tag is used to create superscript text. Example: <sup>This text is superscript</sup>

  7. <mark>: This tag is used to highlight the enclosed text. Example: <mark>This text is highlighted</mark>

  8. <small>: This tag is used to render the enclosed text in a smaller font size. Example: <small>This text is smaller</small>

  9. <big>: This tag is used to render the enclosed text in a bigger font size. Example: <big>This text is bigger</big>

  10. <pre>: This tag is used to preserve the formatting of the enclosed text, including white spaces and line breaks. Example: <pre>This text preserves formatting</pre>

These are just a few examples of HTML text formatting tags. There are many more tags and CSS styles available to control the appearance of text in HTML.

  1. <em>: This tag is used to emphasize the enclosed text, typically rendered in italics. Example: <em>This text is emphasized</em>

  2. <strong>: This tag is used to highlight the enclosed text, typically rendered in bold. Example: <strong>This text is highlighted</strong>

  3. <del>: This tag is used to indicate deleted or removed text, typically rendered with a strikethrough. Example: <del>This text has been deleted</del>

  4. <ins>: This tag is used to indicate inserted or added text, typically rendered with an underline. Example: <ins>This text has been inserted</ins>

  5. <code>: This tag is used to represent computer code or program code, typically rendered in a monospaced font. Example: <code>console.log("Hello, World!");</code>

  6. <kbd>: This tag is used to represent keyboard input, typically rendered in a monospaced font. Example: <kbd>Ctrl + Shift + S</kbd>

  7. <cite>: This tag is used to denote a citation or reference, typically rendered in italics. Example: <cite>John Doe, "Title of the Article," Journal Name</cite>

  8. <blockquote>: This tag is used to create a block-level quotation or extract, typically rendered with indentation. Example:

css
<blockquote> This is a blockquote. It can span multiple lines. </blockquote>
  1. <abbr>: This tag is used to define an abbreviation or acronym and provide an expanded version as a tooltip. Example: <abbr title="World Health Organization">WHO</abbr>

  2. <span>: This tag is a generic inline container that can be used to apply custom styles or formatting to a specific section of text. Example: <span style="color: blue;">This text is blue</span>

Remember, these tags are just a selection of the text formatting options available in HTML. The appearance of text can be further customized using CSS (Cascading Style Sheets) to achieve various effects and styles.


In Hindi

what is text formating tags ?

HTML टेक्स्ट फ़ॉर्मेटिंग टैग का उपयोग HTML दस्तावेज़ के भीतर टेक्स्ट में विभिन्न शैलियों और फ़ॉर्मेटिंग को लागू करने के लिए किया जाता है। यहां HTML में आमतौर पर उपयोग किए जाने वाले कुछ टेक्स्ट फ़ॉर्मेटिंग टैग दिए गए हैं: <b>: इस टैग का उपयोग संलग्न टेक्स्ट को बोल्ड बनाने के लिए किया जाता है। उदाहरण: <b>यह टेक्स्ट बोल्ड है</b> <i>: इस टैग का उपयोग संलग्न टेक्स्ट को इटैलिकाइज़ करने के लिए किया जाता है। उदाहरण: <i>यह पाठ इटैलिकाइज़्ड है</i> <u>: इस टैग का उपयोग संलग्न टेक्स्ट को रेखांकित करने के लिए किया जाता है। उदाहरण: <u>यह पाठ रेखांकित है</u> <s>: इस टैग का उपयोग संलग्न पाठ पर प्रहार करने के लिए किया जाता है। उदाहरण: <s>इस पाठ को हटा दिया गया है</s> <sub>: इस टैग का उपयोग सबस्क्रिप्ट टेक्स्ट बनाने के लिए किया जाता है। उदाहरण: <sub>यह टेक्स्ट सबस्क्रिप्ट है</sub> <sup>: इस टैग का उपयोग सुपरस्क्रिप्ट टेक्स्ट बनाने के लिए किया जाता है। उदाहरण: <sup>यह टेक्स्ट सुपरस्क्रिप्ट है</sup> <चिह्न>: इस टैग का उपयोग संलग्न टेक्स्ट को हाइलाइट करने के लिए किया जाता है। उदाहरण: <चिह्न>यह पाठ हाइलाइट किया गया है</चिह्न> <छोटा>: इस टैग का उपयोग संलग्न टेक्स्ट को छोटे फ़ॉन्ट आकार में प्रस्तुत करने के लिए किया जाता है। उदाहरण: <छोटा>यह पाठ छोटा है</छोटा> <बड़ा>: इस टैग का उपयोग संलग्न टेक्स्ट को बड़े फ़ॉन्ट आकार में प्रस्तुत करने के लिए किया जाता है। उदाहरण: <बड़ा>यह पाठ बड़ा है</बड़ा> <pre>: इस टैग का उपयोग सफेद रिक्त स्थान और लाइन ब्रेक सहित संलग्न पाठ के स्वरूपण को संरक्षित करने के लिए किया जाता है। उदाहरण: <pre>यह पाठ स्वरूपण को सुरक्षित रखता है</pre> ये HTML टेक्स्ट फ़ॉर्मेटिंग टैग के कुछ उदाहरण मात्र हैं। HTML में टेक्स्ट की उपस्थिति को नियंत्रित करने के लिए कई और टैग और CSS शैलियाँ उपलब्ध हैं। उपयोगकर्ता ज्यादा लिखो चैटजीपीटी निश्चित रूप से! यहां कुछ अतिरिक्त HTML टेक्स्ट फ़ॉर्मेटिंग टैग दिए गए हैं: <em>: इस टैग का उपयोग संलग्न पाठ पर जोर देने के लिए किया जाता है, जो आमतौर पर इटैलिक में प्रस्तुत किया जाता है। उदाहरण: <em>इस पाठ पर ज़ोर दिया गया है</em> <strong>: इस टैग का उपयोग संलग्न टेक्स्ट को हाइलाइट करने के लिए किया जाता है, जिसे आमतौर पर बोल्ड में प्रस्तुत किया जाता है। उदाहरण: <strong>यह पाठ हाइलाइट किया गया है</strong> <डेल>: इस टैग का उपयोग हटाए गए या हटाए गए टेक्स्ट को इंगित करने के लिए किया जाता है, जिसे आमतौर पर स्ट्राइकथ्रू के साथ प्रस्तुत किया जाता है। उदाहरण: <del>यह पाठ हटा दिया गया है</del> <ins>: इस टैग का उपयोग सम्मिलित या जोड़े गए टेक्स्ट को इंगित करने के लिए किया जाता है, जो आमतौर पर एक अंडरलाइन के साथ प्रस्तुत किया जाता है। उदाहरण: <ins>यह टेक्स्ट डाला गया है</ins> <कोड>: इस टैग का उपयोग कंप्यूटर कोड या प्रोग्राम कोड को दर्शाने के लिए किया जाता है, जो आमतौर पर एक मोनोस्पेस्ड फ़ॉन्ट में प्रस्तुत किया जाता है। उदाहरण: <कोड>कंसोल.लॉग("हैलो, वर्ल्ड!");</कोड> <kbd>: इस टैग का उपयोग कीबोर्ड इनपुट को दर्शाने के लिए किया जाता है, जो आमतौर पर एक मोनोस्पेस्ड फ़ॉन्ट में प्रस्तुत किया जाता है। उदाहरण: <kbd>Ctrl + Shift + S</kbd> <उद्धरण>: इस टैग का उपयोग किसी उद्धरण या संदर्भ को दर्शाने के लिए किया जाता है, जो आमतौर पर इटैलिक में प्रस्तुत किया जाता है। उदाहरण: <उद्धरण>जॉन डो, "लेख का शीर्षक," जर्नल का नाम</उद्धरण> <ब्लॉककोट>: इस टैग का उपयोग ब्लॉक-स्तरीय उद्धरण या उद्धरण बनाने के लिए किया जाता है, जो आमतौर पर इंडेंटेशन के साथ प्रस्तुत किया जाता है। उदाहरण: सीएसएस कोड कॉपी करें <ब्लॉककोट> यह एक ब्लॉककोट है. यह अनेक पंक्तियों का विस्तार कर सकता है। </ब्लॉककोट> <abbr>: इस टैग का उपयोग संक्षिप्त नाम या परिवर्णी शब्द को परिभाषित करने और टूलटिप के रूप में एक विस्तारित संस्करण प्रदान करने के लिए किया जाता है। उदाहरण: <abbr title='विश्व स्वास्थ्य संगठन'>WHO</abbr> <span>: यह टैग एक सामान्य इनलाइन कंटेनर है जिसका उपयोग टेक्स्ट के किसी विशिष्ट अनुभाग में कस्टम शैलियों या फ़ॉर्मेटिंग को लागू करने के लिए किया जा सकता है। उदाहरण: <span style="color: नीला;">यह टेक्स्ट नीला है</span> याद रखें, ये टैग HTML में उपलब्ध टेक्स्ट फ़ॉर्मेटिंग विकल्पों का एक चयन मात्र हैं। विभिन्न प्रभावों और शैलियों को प्राप्त करने के लिए सीएसएस (कैस्केडिंग स्टाइल शीट्स) का उपयोग करके पाठ की उपस्थिति को और अधिक अनुकूलित किया जा सकता है।

Comments

Popular posts from this blog

html audio tag | audio in html | how to add audio in html #html #htmlcss