<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"
  "http://www.w3.org/TR/REC-html40/strict.dtd"
<HTML>


 <HEAD>
  <TITLE>
   Paragraphs
  </TITLE>
 </HEAD>
 <BODY>
Hypertext Skills Group
  <H1 ALIGN=Center>

  </H1>

Paragraphs

  <P>

A paragraph is a piece of text bracketed by the markup notations <P> and </P>. When the text is displayed in the browser window only one space will be displayed between each word, no matter how many are present in the source code. The browser will also ignore carriage returns or line-breaks, inserting its own to best fit the display window. Line-breaks can be forced by using the markup notation <BR> within the paragraph. If two words must not be separated by a line-break, the special character "&nbsp;" should be used instead of a space. The character is called "Non-Breaking Space".

  </P>
  <HR>

  <P ALIGN=Left>

The behaviour of "<P>" can be modified by specifying the "ALIGN" attribute. They can be aligned on the left hand side of the screen using "ALIGN=Left". Left alignment is the default behaviour, so this specification can safely be omitted.

  </P>
  <P ALIGN=Center>

"ALIGN=Center" centres text on the screen.

  </P>
  <P ALIGN=Right>

"ALIGN=Right" lines text up on the right hand side of the screen. Not all browsers respect all the different ways of aligning a paragraph, so this may appear as left aligned text.

  </P>
  <P ALIGN=Justify>

"ALIGN=Justify" lines text up on both sides of the screen. As with the other alignments, not all browsers will display justified text correctly, in which case they will default to left alignment, leaving the right hand edge ragged.

  </P>
  <HR>

  <P ALIGN=Center>
   <A HREF="contents.htm">

   </A>
  </P>

Contents

 </BODY>
</HTML>