Creating Lists - Chapter 4
Creating Lists
Lists can be very useful in structuring a website. Although you don’t often see lists displayed on websites (in traditional ways) lists are commonly used to display navigation menus. There are two types of lists that are used in HTML:
ordered lists
unordered lists
Ordered lists are lists that obviously have a certain order to them. They can be displayed using numbers (i.e. 1, 2, 3, etc.) or letters (e.g., a, b, c, etc.). Unordered lists are displayed using bullet points by default.
Refer to the course booklet for the code for Exercise #4.