elements get surrounded by < and > but i dont understand because how does .canvas go between < & > and work properly without error how does that work because i dont remember learning that.
The CSS syntax .canvas is being used as a shortcut for saying “the element with a class of ‘canvas’”. This is a popular thing to do so you’ll want to get used to it
So when the instructions say:
“Wrap the .canvas element…”
You can replace that with “Wrap the element with a class of ‘canvas’…”
do you see here any element that has a class “canvas” ?
Edit: since the exercise want you to wrap the element .canvas in another div, you should restart the step to reset the code, then find the element that has a class canvas and put it inside your new div element.