Introduction to HTML - Part 4 (Paragraphs)

Normally, paragraphs are formatted by the browser according to the window size and font settings.

Block quotes

Example:
<blockquote> This text is slightly indented from the rest. </blockquote>
This text is slightly indented from the rest.

Pre-formatted text

Example:
<pre> # Here is a simple Python program for i in range(0,1000): print i </pre>
# Here is a simple Python program
for i in range(0,1000):
      print i

Next