• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/5

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

5 Cards in this Set

  • Front
  • Back
How often doe people use lists?
"In modern web development lists are workhorse elements, frequently used for navigation as well as general content."
What are the three types of html lists
* unordered list—used to group a set of related items, in no particular order.
* ordered list—used to group a set of related items, in a specific order.
* definition list—used to display name/value pairs such as terms and their definitions, or times and events.
unordered list tags
<ul>
<li>bread</li>
<li>coffee beans</li>
<li>milk</li>
<li>butter</li>
</ul>
ordered list tags
<ol>

<li>Bake in oven for an hour</li>
<li>Serve</li>
</ol>
<ol start="4">
<li>Bake in oven for an hour</li>
<li>Remove from oven</li>
<li>Allow to stand for ten minutes</li>
<li>Serve</li>
</ol>
definition list
<dl>
<dt>Term</dt>
<dd>Definition of the term</dd>