home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 22 / AMUG_22-1.ISO / Files / Internet / Web Things / HTML 201.sit / HTML 201 / HTML 201.rsrc / TEXT_132.txt < prev    next >
Encoding:
Text File  |  1996-03-13  |  1.3 KB  |  58 lines

  1.  
  2. Drill 3
  3.  
  4. Let's put in an ordered list
  5.  
  6. Add something after your unordered list.
  7.  
  8. <HTML>
  9. <HEAD>
  10. <TITLE>
  11. George's page of lists
  12. </TITLE>
  13. </HEAD>
  14. <BODY>
  15. <H1>George's page of lists</H1>
  16. <P>
  17. <HR>
  18. <P> 
  19. This is my page of lists. It contains lists of things I like. But first let's define what a list is:
  20. <P> 
  21. <DL>
  22. <DT>List                                                Definition list
  23. <DD>A series of words.
  24. </DL>
  25. <P>
  26. Here is a list of things I like to do:
  27. <P>
  28. <UL>
  29. <LI>reading
  30. <LI>skiing                                             Unordered list
  31. <LI>hiking
  32. <LI>running
  33. </UL>
  34. <P>
  35. Here is a list of my favorite foods in order:
  36. <P>
  37. <OL> --------> opening ordered list tag
  38. <LI>sushi  --------> list item tag
  39. <LI>burritos                                                This is new!
  40. <LI>deep dish pizza
  41. <LI>spinach salad
  42. </OL> --------> closing ordered list tag
  43. <P>
  44. </BODY>
  45. </HTML>
  46.  
  47. Save this document (*REMEMBER* this  document needs to be saved as .html at the immediate end of the name you gave the document) in your word processing program and then open it using your browser.
  48.  
  49. You can compare what your document looks like with the example document I have included (lists.html).
  50.  
  51. If you do not see something similar:
  52.  
  53. 1.check your typing
  54. 2.make sure the document is saved as an HTML document
  55. 3.reload the document into the browser
  56.  
  57. Now we move on to links.
  58.