Forms
   - Forms provide a way to for the user to interact with the web 
       page.
 
   - In an html document, you add a form tag, and you put some input
       tags inside the form.
 
   - You can also write some code (not html) that handles the data
       the user puts in.
 
   - Look at 
                        http://www.w3schools.com/html/html_forms.asp.
 
   - The form tag looks like    < form > with the associated
       </form >. 
 
   - Note this works in IE but if you're reading it in some other browsers
       the > < are the right and left angle brackets that normally
       mark an html tag.
 
   - The input fields go in between.