You have a DOCTYPE declaration at the very top of your document, but you should then also have an html element, which has an opening html tag and a closing html tag. You will then be nesting all other HTML elements for this project between the two html tags.
You have the opening tag but have not added a closing tag.
Most HTML elements have both an opening and closing tag. The exceptions are elements such as img and input (amongst others).
EXAMPLE:
<h1>This is a heading element</h1>
<p>This is a paragraph element</p>
<div>This is a div element</div>
If you want to paste any code into a forum post, you should use the Preformatted Text Tool (</> icon or CTRL+e). This creates two sets of triple backticks, and you paste your code between them, so that it displays correctly on the forum.
Yes, that should work. If it’s still not passing, then the following should help:
Hit the Reset button
Hard refresh the page with CTRL+F5
Copy and paste the code from your post above
Click Check your code
If it’s still not passing then you may need to disable any active browser extensions, as they can interfere with the FCC tests. Alternatively, you can try a different browser.