Learn Basic CSS by Building a Cafe Menu - Step 2

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

Your code so far

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

<!-- User Editable Region -->
Hi I need to Add a head element within the html element, so I can add a title element. The title element's text should be Cafe Menu.

<html head> 
  <title>Cafe Menu</title>

<!-- 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/112.0.0.0 Safari/537.36

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

Link to the challenge:

Note that the html element is comprised of an opening and a closing tag. When you’re told to put something ‘inside’ the html element, that means it’s nested between the opening and closing tags, not inside the opening tag.

I would double-check the correct format for the head element. You’ve got it right with the title element, use that for reference and adjust your head element accordingly