Writing html:
Tag Attributes:
  Often you can use more than one attribute in a single tag, in any order, 
  with a space
  between each.
  also attributes often have values. Some can be number values others are 
  more
  specific
<table border="1" width="200">
  <br clear="left">
  <img src="image.gif" hspace="5">
Quotation 
  Marks:
  notice that image.gif is in quotation marks (""), it is a file
   name (file names are always in quotation marks)
Upper- and 
  Lowercase Letters:
  You can use either upper or lower case and the 
  browser will
  recognize it, but this is not true for code such as XML. I am using lowercase tags to be XML compliant.