HTML tags should be wrapped around one H1 element

Tell us what’s happening:
Test is saying html tags should wrap around h1 element, ive even watched the the help video, my code looks like his but i cant figure out what im doing wrong.

Your code so far


<!DOCTYPE html>
<html>
<h1> Help me </h>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36.

Challenge: Declare the Doctype of an HTML Document

Link to the challenge:

<h1> is not closed correctly.

It should be <h1> Help me </h1>.

…Thank you

1 Like