Menu
Coddy logo textTech

Étapes

Fait partie de la section Fundamentals du Journey HTML de Coddy. Leçon 19 sur 60.

challenge icon

Défi

Facile

Ajoutez un titre (h2) avec le texte Steps:.

Ajoutez une liste d'étapes dans une liste ordonnée (ol) :

  1. Preheat the oven to 350°F (175°C).
  2. Mix the butter and sugar together in a bowl.
  3. Add the flour and chocolate chips, and mix well.
  4. Scoop the dough onto a baking sheet.
  5. Bake for 10-12 minutes or until golden brown.

Essayez vous-même

<!DOCTYPE html>
<html>
    <body>
        <h1>Chocolate Chip Cookies</h1>
        <p>This is a simple recipe for making delicious chocolate chip cookies at home.</p>
        
        <h2>Ingredients:</h2>
        <ul>
            <li>1 cup of butter</li>
            <li>1 cup of sugar</li>
            <li>2 cups of flour</li>
            <li>1 cup of chocolate chips</li>
        </ul>
    </body>
</html>

Toutes les leçons de Fundamentals

Entraînez-vous par vous-même : Playground Web