HTML Basic Text Formatting Example

Header Text

<html>
<head>
</head>
<body>
 <h1>Heading h1<h1>
 <h2>Heading h2<h2>
 <h3>Heading h3<h3>
 <h4>Heading h4<h4>
 <h5>Heading h5<h5>
 <h6>Heading h6<h6>
</body>
</html>

Basic Text Formatting

<html>
<head>
</head>
<body>
  This Example is <b>Bold Text</b><br />
  This Example is <big>Big Text</big><br />
  This Example is <center>Center Text</center><br />
  This Example is <em>Emphasize Text</em><br />
  This Example is <i>Italic  Text</i><br />
  This Example is <ins>Insert Text</ins><br />
  This Example is <kbd>Keyboard Text</kbd><br />
  This Example is <p>Paragraph Text</p><br />
  This Example is <q>Short Quotation</q><br />
  This Example is <small>Small Text</small><br />
  This Example is h<sub>2</sub>+so<sub>4</sub>=h<sub>2</sub>so<sub>4</sub><br />
  This Example is 3<sup>2</sup>+4<sup>2</sup>=5<sup>2</sup><br />
  This Example is <tt>Teletype Text</tt><br />
</body>
</html>
This Example is Bold Text
This Example is Big Text
This Example is
Center Text

This Example is Delete Text
This Example is Emphasize Text
This Example is Italic Text
This Example is Insert Text
This Example is Keyboard Text
This Example is

Paragraph Text


This Example is Short Quotation
This Example is Small Text
This Example is h2+so4=h2so4
This Example is 32+42=52
This Example is Teletype Text

Pre-formatted Text

<html>
<head>
</head>
<body>
  <pre>
   This example is predefined text
      This is a Second line of Predefined example
  This is Third line of predefined example  
  </pre>
</body>
</html>
                 This example is predefined text
                    This is a Second line of Predefined example
                This is Third line of predefined example  
                

Defination List

<html>
<head>
</head>
<body>
  <dl>
    <dt>URL
      <dd>Universal Resource Locator
    <dt>W3C
      <dd>World Wide Web Consortium
    <dt>PNG
      <dd>Portable Network Graphics
  </dl>
</body>
</html>
URL
Universal Resource Locator
W3C
World Wide Web Consortium
PNG
Portable Network Graphics