Learn Basic CSS by Building a Cafe Menu - Step 3

This is just not accepting this solution and I am stuck. I am pretty sure it’s correct, please help

Your code so far

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

<!-- User Editable Region -->

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

<!-- User Editable Region -->

</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5.1 Safari/605.1.15

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

Link to the challenge:

Directons say

Inside the head element, nest a meta element with an attribute named charset set to the value utf-8

Your meta is on the outside of the head element not inside

I accidentally uploaded this version, it is inside the tag but still not working.

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

get rid of the spaces after charset and after the = sign

Oh that worked, thank you so much!