I think it's that you have three sets of style tags that need to be consolidated into one big style tag holding all the CSS.
There's a line break between lines 51 and 52 that needs to be removed so they can all be on one line. All the CSS needs to be in one line, unless you use the comments like you do in the middle set of style tags, which is good that you're keeping it organized there.
And towards the end you can remove the !DOCTYPE html, html, and head tags and just take the body background code and put that in with the rest of your CSS. The URL to the background image there is also going to have to link somewhere on the internet, so you will need a full to the image file, ie one that starts http://... and stuff.
If you copy your CSS into a
This right here is it-->
Thanks so much!!
And honey you should see me in a crown.
I think it's that you have
There's a line break between lines 51 and 52 that needs to be removed so they can all be on one line. All the CSS needs to be in one line, unless you use the comments like you do in the middle set of style tags, which is good that you're keeping it organized there.
And towards the end you can remove the !DOCTYPE html, html, and head tags and just take the body background code and put that in with the rest of your CSS. The URL to the background image there is also going to have to link somewhere on the internet, so you will need a full to the image file, ie one that starts http://... and stuff.