Learn Basic CSS by Building a Cafe Menu - Step 4

Tell us what’s happening:

I have tried adding the body element within the head element but it keeps giving me the same error message

Your code so far

<!DOCTYPE html>
<html lang="en">

<!-- User Editable Region -->

  <head>
    <body>
      <meta charset="utf-8" />
      <title>Cafe Menu</title>
    </body>
  </head>

<!-- User Editable Region -->

</html>

Your browser information:

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

Challenge Information:

Learn Basic CSS by Building a Cafe Menu - Step 4

Hi there!

add a body element below the head element.

2 Likes

Yes I agree. You see, right below the head’s closing element i.e , open the body element and then close it, that’s all. You aren’t told to nest it inside the head element …

2 Likes