Lists

You will now create an unordered list to emphasize the strengths of this company. Your unordered list will look like the following:

An unordered list places bullets in front of each item.

Place your cursor after the </p> tag, which ends your paragraph, then press the enter key to start a new line. The following codes are how the HTML should be placed in your document.

<UL>

<LI>

<LI>

<LI>

</UL>

Open your document in Notepad, if its not already open, and add the HTML code for an unordered list to your document. Add the four items listed above just below your h2 heading. Make sure you enter the capital I, not the number 1 (or if using lower case enter i) when inserting your HTML code. Save your file then reload it in your browser.

Unordered List

FYI: There are two other types of lists. An ordered list (numberic) is used when you want to place the numbers 1, 2, 3, etc. in front of your list. The code to use is shown below:

<OL>

<LI>

<LI>

<LI>

</OL>

The third type of list is the definition list which is a list of terms, each followed by a definition line. The code to use is shown below:

<DL>

<DT>

<DT>

<DT>

</DL>