I see you added “.canvas” as text. This challenge actually does not require you to add any text, but you need to add another div with the frame class. So, I suggest resetting the lesson to fix everything. When you reset the challenge you will see this
<div class="canvas">
</div>
Now, the challenge asks you to " Wrap the .canvas element in another div . Give that div the frame class"
What this means is you need to add another div around the existing div that the challenge initially gave you, and give that new div the class of “frame”
No worries, so we dont give out full solutions to the challenges but I can help you work this out. When you nest something all your doing is putting and element inside another element. That looks like this
<div>
<div> This div is inside a div </div>
</div>
Notice how when I nest an element I have the opening div at the very top, and the closing is on the very bottom? Anything between those two tags is considered to be nested.
Now with that being said, you need to nest the initial div that the challenge gives you, inside a new one and then make sure you give the new a div the class frame
You are close! I edited your post to show the code. You just need to switch the classes around. the top div should have the frame class, and the lower div needs the canvas class