Learn Basic CSS by Building a Cafe Menu - Step 2

Tell us what’s happening: How do i nest the title element within the head element.
Describe your issue in detail here.

Your code so far

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

<!-- User Editable Region -->

<head> <title>="Cafe Menu"</title>

<!-- 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/117.0.0.0 Safari/537.36 Edg/117.0.2045.31

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

Link to the challenge:

Two issues here

  1. Your head element needs a cloning tag

  2. The text for the title should not have an = in it

Welcome to the community!
There is a few errors here.

I think you confused attributes with elements, maybe.
Attribute values require the = “value”

But, title is an element, and the text is its value.

I hope this helps you! Great progress!