home *** CD-ROM | disk | FTP | other *** search
/ Magazyn WWW 1999 July / www_07_1999.iso / prez / amiga / awebedv1_2.lha / AWebEd / helpdocs / list < prev    next >
Text File  |  2008-08-09  |  2KB  |  88 lines

  1. Back to MENU
  2. Back to FUNCTIONS
  3.  
  4.                                  List
  5.                                  ----
  6.  
  7. General:
  8.  
  9. Lists can be used to display lists of text and information in a
  10. visually attractive fashion.  There are two types of list:  Ordered
  11. and Unordered.
  12.  
  13. Unordered list:
  14.  
  15. This displays the list with only "bullet" marks preceding each list
  16. item.
  17.  
  18. Ordered list:
  19.  
  20. This displays the list with in a numerically ascending order.
  21.  
  22. Syntax:
  23.  
  24. Unordered list:
  25.  
  26. <UL>
  27. <LI> [List item text]
  28. </UL>
  29.  
  30. The <UL> signifies the start of a list.  The <LI> tag preceds the
  31. string [list text], which is made into a list item.  The </UL> tag
  32. signifies the termination of that list.
  33.  
  34. Ordered list:
  35.  
  36. <OL>
  37. <LI> [List item text]
  38. </OL>
  39.  
  40. The <OL> signifies the start of a list.  The <LI> tag preceds the
  41. string [list text], which is made into a list item.  The </OL> tag
  42. signifies the termination of that list.
  43.  
  44. Use:
  45.  
  46. 1 - Move the cursor to the desired location of the list.
  47. 2 - Double click on the "Un/Ordered list" item.  The relevant tags
  48. will be inserted.  The tags may have to be moved according to your
  49. designs.
  50.  
  51. Example:
  52.  
  53.     <P> Here is a list of famous English universities.
  54.     <UL>
  55.     <LI> Bristol
  56.     <LI> Cambridge
  57.     <LI> Edinburgh
  58.     <LI> Oxford
  59.     </UL>
  60.  
  61. ...would display
  62.  
  63.     Here is a list of famous English universities.
  64.  
  65.         o Bristol
  66.         o Cambridge
  67.         o Edinburgh
  68.         o Oxford
  69.  
  70. or
  71.  
  72.     <P> Here is an approximate ranking of some English universities.
  73.     <OL>
  74.     <LI> Cambridge
  75.     <LI> Oxford
  76.     <LI> Bristol
  77.     <LI> Edinburgh
  78.     </OL>
  79.  
  80. would display
  81.  
  82.     Here is an approximate ranking of some English universities.
  83.  
  84.         1. Cambridge
  85.         2. Oxford
  86.         3. Bristol
  87.         4. Edinburgh
  88.