Lists

Recipe 2.4 Structure the main content

Sample:

Iced latte

A refreshing iced latte recipe.

Ingredients

  • 2 espresso shots (60ml)
  • 2 teaspoons sugar or honey
  • ice
  • 110ml milk

Steps

  1. Mix the hot espresso with the sugar.
  2. Fill a glass with ice and stir in the coffee.
  3. Pour over the milk and stir.

Code:

<h1>Iced latte</h1>

<p>A refreshing iced latte recipe.</p>

<h2>Ingredients</h2>

<ul>
  <li>2 espresso shots (60ml)</li>
  <li>2 teaspoons sugar or honey</li>
  <li>ice</li>
  <li>110ml milk</li>
</ul>

<h2>Steps</h2>

<ol>
  <li>
    Mix the hot espresso with the sugar.
  </li>
  <li>
    Fill a glass with ice and stir in the coffee.
  </li>
  <li>
    Pour over the milk and stir.
  </li>
</ol>