8
LIST TAGS How to use them.

By Sean Griffin LIST TAGS How to use them.. 3 Types of Lists Unordered Lists: –also called bulleted lists Ordered Lists: –also called numbered lists Definition

Embed Size (px)

Citation preview

Page 1: By Sean Griffin LIST TAGS How to use them.. 3 Types of Lists Unordered Lists: –also called bulleted lists Ordered Lists: –also called numbered lists Definition

LIST TAGS

How to use them.

Page 2: By Sean Griffin LIST TAGS How to use them.. 3 Types of Lists Unordered Lists: –also called bulleted lists Ordered Lists: –also called numbered lists Definition

3 Types of Lists

• Unordered Lists:– also called bulleted lists

• Ordered Lists:– also called numbered lists

• Definition Lists:– a list of defined terminology

Page 3: By Sean Griffin LIST TAGS How to use them.. 3 Types of Lists Unordered Lists: –also called bulleted lists Ordered Lists: –also called numbered lists Definition

Unordered Lists

Unordered lists are bulleted lists.

<ul><li>Shirts</li><li>Shoes</li><li>Pants</li>

</ul>

• Shirts• Shoes• Pants

Page 4: By Sean Griffin LIST TAGS How to use them.. 3 Types of Lists Unordered Lists: –also called bulleted lists Ordered Lists: –also called numbered lists Definition

Nesting Unordered Lists

Unordered lists can be nested:<ul>

<li>Shirts</li><ul>

<li>Polos</li>

<li>Oxfords</li>

</ul><li>Shoes</li><li>Pants</li>

</ul>

• Shirtso Poloso Oxfords

• Shoes• Pants

Page 5: By Sean Griffin LIST TAGS How to use them.. 3 Types of Lists Unordered Lists: –also called bulleted lists Ordered Lists: –also called numbered lists Definition

Ordered Lists

Ordered Lists are numbered lists:

<ol><li>Shirts</li><li>Shoes</li><li>Pants</li>

</ol>

1. Shirts2. Shoes3. Pants

Page 6: By Sean Griffin LIST TAGS How to use them.. 3 Types of Lists Unordered Lists: –also called bulleted lists Ordered Lists: –also called numbered lists Definition

Nesting Ordered Lists

Ordered Lists can be nested:

<ol><li>Shirts</li> <ol>

<li>Polos</li><li>Oxfords</

li> </ol><li>Shoes</li><li>Pants</li>

</ol>

1. Shirts1. Polos2. Oxfords

2. Shoes3. Pants

Page 7: By Sean Griffin LIST TAGS How to use them.. 3 Types of Lists Unordered Lists: –also called bulleted lists Ordered Lists: –also called numbered lists Definition

Mixing Ordered & Unordered Lists

Ordered & Unordered lists can be used together:

<ol><li>Shirts</li> <ul>

<li>Polos</li><li>Oxfords</

li> </ul><li>Shoes</li><li>Pants</li>

</ol>

1. Shirts• Polos• Oxfords

2. Shoes3. Pants

Page 8: By Sean Griffin LIST TAGS How to use them.. 3 Types of Lists Unordered Lists: –also called bulleted lists Ordered Lists: –also called numbered lists Definition

Definition Lists

These let you add definitions to your page:

<dl><dt>xenophile</dt> <dd>somebody who

likes foreigners </dd>

</dl>

xenophilesomebody who likes foreigners