HTML style argument
   - There are lots of HTML references on line.  I looked at 
       
       http://www.w3schools.com/tags/default.asp
 
   - You can add additional arguments to tags.  Like in the
       < img src="up.gif" >
  
   - In the old html (4.0) you could pass an argument to many
       tags that stated, for instance, their colour.
 
   - In the new html (5.0) you pass a style argument.
 
   - test
 
   - <b style="color:red"> test </b>
 
   - You separate style arguments by ;
 
   test2
 
   - <h6 style="color:green;align:center">test2</h6>