Learn HTML Foundations by Building a Recipe Page - Build a Recipe Page Project

Tell us what’s happening:

Hi there, I don’t understand why I cannot pass the tests.

Your code so far

<!-- file: index.html -->

/* file: styles.css */
<!DOCTYPE html>
<html>
  <head>
    <title>The Odin Recipes</title>
  </head>
  <body>
    <h1>Creamy Chocolate Fudge</h1>
    <img src="https://unsplash.com/photos/an-elephant-stands-under-a-tree-in-the-savannah-rzPOOSDNBM4" alt="just a image" />
    <h2>Description</h2>
    <p>You should see a couple of paragraphs under Description that describe the recipe.</p>
    <p>You should see a couple of paragraphs under Description that describe the recipe.</p>
    <h2>Steps</h2>
    <ol>
      <li>One</li>
      <li>Two</li>
      <li>Three</li>
    </ol>
    <h2><a href="#">More Recipes</a></h2>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36

Challenge Information:

Learn HTML Foundations by Building a Recipe Page - Build a Recipe Page Project

why is your html code in the css file?

1 Like