Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

When I run the tests it says I need to have an html element with lang set to en, head element within html element, title element within head element, meta element in head element, meta element should have charset set to utf-8, and body element within html element all of which are there? So what am I missing??

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>How to make Sugar Cookies!</title>
    <meta charset=UTF-8>
    <body>
      <h1>How to make delicious sugar cookies!</h1>
      <p>Easy sugar cookie recipe yay (from sally's baking addiction)</p>
      <h2>Ingredients</h2>
      <ul>
        <li>2 1/4 cups all-purpose flour </li>
        <li>1/2 tsp baking powder</li>
        <li>1/4 tsp salt</li>
        <li>3/4 cup unsalted butter, <a href="https://sallysbakingaddiction.com/room-temperature-butter/">softened to room temperature</a></li>
        <li>3/4 cup granulated sugar</li>
        <li>1 large egg at room temperature</li>
        <li>2 tsp pure vanilla extract</li>
        <li>1/4 tsp almond extract</li>
        </ul>
        <h2>Instructions</h2>
        <ol>
          <li>In a medium bowl, whisk the flour, baking powder, and salt together. Set aside.</li>
          <li>In a large bowl using a handheld or a stand mixer fitted with a paddle attachment, beat the butter and sugar together on high speed until the mixture is light and creamy. </li>
          <li>Add the egg, vanilla, and almond extract and beat on high speed until combined. Scrape down the sides and bottom of the bowl and beat again as needed to combine. Add the dry ingredients to the wet ingredients and mix on low speed until combined. The dough should be soft. If it seems too soft and sticky for rolling, beat in 1 more Tablespoon of flour.</li>
          <li>ok im not adding the rest my hands hurt</li>
          </ol>
          <img src="https://sallysbakingaddiction.com/wp-content/uploads/2014/05/cookie-cutter-sugar-cookies.jpg" alt="image of sugar cookies with pink and blue icing">
       

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:147.0) Gecko/20100101 Firefox/147.0

Challenge Information:

Build a Recipe Page - Build a Recipe Page

Consider what parts make an element, you write the opening tag, it’s content, and then…

1 Like