Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

Ithe test page says that both my lang and html elements are missing, even thou they are not any advice?

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Whey Smoothie</title>
    <meta charset="UTF-8">
  </head>
  <body>
    <h1> Whey Smoothie</h1>
    <p>A refreshing and protein induced treat good for post workout or just as a treat</p>
     <img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="A whole array of this you wont need">
    <h2> Ingredients</h2>
    <ul>
      <li>150 grams of frozen Strawberries
      <li>50 grams of vanilla ice cream Whey
      <li>a pinch of salt
      <li>(optional)3 grams of creatine
    </ul>
    <h2>Instructions</h2>
    <ol>
      <li>grab your blender and its blades
      <li>make sure everything is clean
      <li>place the strawberries
      <li>Place the Protein and other dry ingredients
      <li> add water to taste, if you want a more mouse consistency less water a more liquid consistency more water
      </ol>

Your browser information:

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

Challenge Information:

Build a Recipe Page - Build a Recipe Page

Hi,
Your html element needs a closing tag. Without it, you don’t have an html element.

1 Like

thank you so much, im getting started and this closing things sometimes slips my mind

1 Like