Making ListsSometime you may want to make a list on your page. It could be a list of your relatives, a list of your postcard collection or a list of links that the viewer might be interested in. HTML offers some tags that can quickly and elegantly organize a list. First we have the Unorganized List. This is a list that has no particular order in it and has bullets in front of the items. For example: Towns of the North Okanagan
And here is the script for that:
The <UL> tag means an unordered list and the <LI> tag identifies the items in that list. Note that the list tags have to be closed off </UL> but the <LI> does not have to be closed. There are some attributes that can be added here to the <UL> tag. If the round dot type bullet doesn't turn your crank then you can put in UL type=circle ( or square) The default type is disk. Let's try our script again, this time with circles and then squares. Towns of the North Okanagan
Towns of the North Okanagan
And the scripts for these two lists:
Towns of the North Okanagan
And the script
There are other "types". Type=i Towns of the North Okanagan
Type=I Towns of the North Okanagan
Type=a Towns of the North Okanagan
Type=A Towns of the North Okanagan
For the more adventurous, lists can be placed inside of lists. Towns of the North Okanagan
And here's the script.
You can also place your own bullets in front of your lines of text but you can't use the lists tags. You place your text first and then insert a graphic (the bullet) in front of each line, like so: Towns of the North Okanagan
Obviously this little bullet is inappropriate to the page as it has a white background. I need a transparent graphic. Towns of the North Okanagan
There, that's better! Well, maybe not so. The text needs to be larger to match the size of the bullet. And there needs to be more space between the lines in the list. Towns of the North Okanagan
Here's the script for this list:
Next we go to FRAMES |