Learn Basic CSS by Building a Cafe Menu - Step 1

Add the <!DOCTYPE html> tag, and an html element with a lang attribute of en .

Your code so far


<!-- User Editable Region -->

<!DOCTYPE html> <html> /lang/ <en>

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

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

Link to the challenge:

Two things:

  • The html element requires both an opening and closing tag since you can put content inside of it.
  • The lang attributes is just that, an attribute, so it goes on the opening tag.

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