Learn Basic CSS by Building a Cafe Menu - Step 1

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

Your code so far


<!-- User Editable Region -->

<!DOCTYPE html><html> lang em
  


<!-- User Editable Region -->


Your browser information:

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

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

Link to the challenge:

The html element should be on a different line than the <!DOCTYPE html> part.
There should also be a closing html tag under the opening html tag:

<html>
</html>

also the html tag should have the lang attribute inside the angle brackets(<>) and the value should be “en” not “em”.
e.g.,:

<html lang="en">
</html>

Hope this helped!

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