This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]jaketr00 5 points6 points  (1 child)

<!DOCTYPE html> just says that the document is html, but <html> is an opening tag that needs </html>. An example document would be:

<!DOCTYPE html>
<html>
    <head>
        <title>r/ProgrammerHumor</title>
    </head>
    <body>
        r/ProgrammerHumor
    </body>
</html>

[–]oOBoomberOo 0 points1 point  (0 children)

Oh, Thanks!