Doctype of HTML Document

Tell us what’s happening:
Can someone help me out with my code? Don;t know what is wrong with the h1 section of my code

Your code so far


<!DOCTYPE html>
<html>
    <h1>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/declare-the-doctype-of-an-html-document/

You need to make sure you are closing your h1 tag.

You do it by adding </h1> following your <h1>.

ah. didn’t know that