HTML Formatting is a process of design text for good look or Formatting a webpage Heading, Paragraph, single line. 

This is a HTML Formatting Tag,
  • <b>  -  Bold the Text
  • <i>  -  Italic the Text
  • <u>  -  Underline the Text
  • <strong>  -  Important Text
  • <em>  -  Emphasized or Same Italic
  • <mark>  -  Highlight the Text
  • <del>  -  Delete the Text
  • <small>  -  Small the Text
  • <sub>  -  Text Slightly below the line
  • <sup>  -  Text Slightly above the line
  • <big>  -  Text size Big
  • <ins>  -  Insert the Text
HTML <b> and <strong> Tag

HTML <b> tag used to defines a bold text.

Example:-

<html>
<body>
<p>Normal Text</p>
<p><b>Bold Text</b></p>
</body>
</html>

Output:-


HTML <strong> tag used to defines a important text with bold highlight.

Example:-

<html>
<body>
<p>Normal Text</p>
<p><strong>Important Text</strong></p>
</body>
</html>

Output:-


HTML <i> and <em> Tag

HTML <i> tag used to defines a Italic text.

Example:-

<html>
<body>
<p>Normal Text</p>
<p><i>Italic Text</i></p>
</body>
</html>

Output:-


HTML <em> tag used to defines a Emphasized or Same Italic text.

Example:-

<html>
<body>
<p>Normal Text</p>
<p><em>Emphasized Text</em></p>
</body>
</html>

Output:-



HTML <Small> Tag

HTML <small> tag used to defines a Small text.

Example:-

<html>
<body>
<p>Normal Text</p>
<p><Small>Small Text</small></p>
</body>
</html>

Output:-

HTML <big> Tag

HTML <big> tag used to defines a Big text.

Example:-

<html>
<body>
<p>Normal Text</p>
<p><big>Big Text</big></p>
</body>
</html>

Output:-
HTML <u> Tag

HTML <u> tag used to defines a  Underline the Text.

Example:-

<html>
<body>
<p><u>HTML Language Study</u></p>
</body>
</html>

Output:-

HTML <sub> and <sup> Tag

HTML <sub> tag used to defines a  Text Slightly below the line

Example:-

<html>
<body>
<p>HTML Language<sub>Subscript Text</sub>Study</p>
</body>
</html>

Output:-
 

HTML <sup> tag used to defines a  Text Slightly above the line

Example:-

<html>
<body>
<p>HTML Language<sup>Subscript Text</sup>Study</p>
</body>
</html>

Output:-