Learn Basic CSS by Building a Cafe Menu - Step 4

Tell us what’s happening:
Describe your issue in detail here.

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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36

Challenge: Learn Basic CSS by Building a Cafe Menu - Step 4

Link to the challenge:

The body element should be below the head element, not inside it. Place it after the closing head tag.

The head element contains metadata about the webpage, such as language, character sets etc.

The body element contains the HTML elements which constitute the page itself, such as headers, paragraphs, images, links etc.

lets read from instructions

add a body element below the head element

does your attempted code reflects that? where is your “body” element in that snippet?

address that change and it should be alright, happy learning :slight_smile:

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.