HTML Tutorials
Text Formating
Here are a few samples for text formating in HTML:
<b>This text is bold</b> - This text is bold
<strong>This text is also bold</strong> - This text is also bold
<i>This text is italic</i> - This text is italic
<u>This text is underlined</u> - This text is underlined
<del>This is a deleted text</del> -
<b><u>This text is bold and underlined</u></b>This text is bold and underlined
<p>This is a Paragraph text</p>
<h1>This is a Heading 1 text</h1>
This text is <sup>superscript</sup> - This text is superscript
This text is <sub>subscript</sub> - This text is subscript
<br /> - A brake, new row.
This is a address text
<address>5 Cromwell Street
Hounslow
Middlesex
UK</address>
5 Cromwell Street
Hounslow
Middlesex
UK
<blockquote>This is a quotation text block</blockquote>
This is a quotation text block
Back
