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="en">

<!-- User Editable Region -->

Test
Sorry, your code does not pass. Keep trying.

Hint
You should have a closing <html> tag. Remember that closing tags have a / following the opening < bracket.

Please, why isn’t it working?
Your browser information:

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

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

Link to the challenge:

Many HTML elements have both an opening and closing tag with this syntax:

<element>content</element>

You have an opening html tag but you have not added a closing tag. You will then go on to add the content in the following steps.

1 Like