Lesson 2: Unordered Lists

Overview

Unordered lists are probably the most widely used lists and are used when there is no particular order.

Learner Outcomes

At the end of this lesson you will have a basic understanding of the use of different types of lists and how to apply them to a Web page.

Activities

  1. Start a new Web page or open an existing page.
  2. Look at the Common HTML Tag Page.

    Unordered Lists

    You can create an unordered list to display items that are not in a specific order, such as a set list of products. Below is an example of how to create an unordered list.

    <html>
    <Head>
    <Title>Unordered List</Title>
    </Head>

    <Body>
    <UL> This is typed before the list.
    <LI> This is put in front of each item in the list.
    </UL> This will end the unordered list command.

    </body>
    </html>

    The following is an example of an unordered list