Ordered List

Code:


<ol>
  <li>Mix eggs and milk in a bowl.</li>
  <li>Add salt and pepper.</li>
</ol>

Rendered view:

  1. Mix eggs and milk in a bowl.
  2. Add salt and pepper.

Unordered List

Code:


<ul>
  <li>Milk</li>
  <li>Eggs</li>
  <li>Butter</li>
</ul>

Rendered view:

  • Milk
  • Eggs
  • Butter

Definition List

Code:


<dl>
  <dt>blink</dt>
  <dd>turn on and off between .5 and 3 times per second
  </dd>
<dt>flash</dt>
  <dd>rapid rate of turning an image on and off that can cause seizures
  </dd>
</dl>

Rendered view:

blink
turn on and off between .5 and 3 times per second
flash
rapid rate of turning an image on and off that can cause seizures