HTML Tutorial

HTML Bold Italic & underline

Html makes it possible to style or edit text to achieve various attributes. For example;

    1. Bold Text: Use the <strong> tag to make text bold. The tag is used for making text bold. This tag not only shows that the text is bold, but that this text is essential for the aspect of SEO Terms.

      <strong>This text is bold.</strong>

      Alternatively, you can use the <b> tag, which also makes the text bold:

      <b>This text is also bold.</b>
    2. Italic Text: The tag is used while editing any text that one desires to highlight through an italic font. This tag does not imply only the formatting of the text to italics, but also that the text should be stressed out. For example:
      <em>This text is italicized.</em>

      You can also use the <i> tag, which italicizes text without adding any special emphasis:

       <i>This text is also italicized.</i>
       
    3. Underlined Text: The tag is used to underline words or text. This makes the text have a style that includes underlining:

      This is a related text that has been underlined

      <u>This text is underlined.</u>
				
					<strong>I am bold tag text but using with strong tag</strong>
<b>I am just bold text but using b tag  there is a no difference with strong and b</b>

<em>I am italicized text with em </em>
<i>I am italicized text with i</i>

<u>I am just underline Text</u>
				
			

Try It Yourself