Declare the Doctype of an HTML Document 3

Tell us what’s happening:

Your code so far


<!DOCTYPE HTML>
<h1>THE LINE ALL WANTED</h1>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99.

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

You’re missing the opening <html> tag below the DOCTYPE:

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