Learn Basic CSS by Building a Cafe Menu - Step 3

hi everyone, please i’m stuck here kindly come to my rescue. thanks

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

<!-- User Editable Region -->

  <head> 
    <title>Cafe Menu><meta>utf-8="charset"</title>
  </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/120.0.0.0 Safari/537.36

Challenge Information:

Learn Basic CSS by Building a Cafe Menu - Step 3

hello! @Sypone

We have to nest inside the <head> tag.

The syntax:

<meta charset = ""> </meta>

Keep Going :slight_smile:

1 Like

Also, charset is an attribute and utf-8 is its value and not vice versa.

1 Like

Hey @Sypone
You are doing great just some few mistakes that could happen to anyone.
First meta tags are self closing tags and they go inside the head element not the title so you need to take it out of the head

charset is an attribute and it goes inside the tag like so

<element attr="#" />

Secondly you have added a closing angle bracket here

Which is not correct kindly remove it

Happy coding

Thanks so much guys. I gat it.

Always happy to help keep up the good work

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