Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

Please help me . All the errors it shows are with the html tag.

Your code so far

<!DOCTYPE html>
<html lang ="en">
  <head>
    <title>Potato Pancakes</title>
    <meta charset="UTF-8">
  </head>
  <body>
    <h1>How to make potato pancakes</h1>
    <p>In this 5 minute recipe, we will learn how to make this easy recipe for crispy potato pancakes</p>
      <h2>Ingredients</h2>
    <ul>
      <li>Potatoes</li>
      <li>Seasoning</li>
      <li>Oil</li>
      <li>Salt</li>
    </ul>
    <h2>Instructions</h2>
    <ol>
      <li>Grate the potatoes</li>
      <li>Add salt and seasonings</li>
      <li>Shallow fry in a pan</li>
      <li>Enjoy</li>
    </ol>
    <img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="Recipe book">
  </body>
  

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36

Challenge Information:

Build a Recipe Page - Build a Recipe Page
https://www.freecodecamp.org/learn/full-stack-developer/lab-recipe-page/build-a-recipe-page

because it’s missing a piece. Remember what you need to write to create an element, opening tag and …?

a closing tag….. but where?

The opening html tag is in the beginning of the document…

1 Like

what does it need to contain? if you are in doubt, review the lesson about the html boilerplate https://www.freecodecamp.org/learn/full-stack-developer/lecture-understanding-the-html-boilerplate/what-is-an-html-boilerplate

2 Likes

Thank you for sharing