Skip to content

Instantly share code, notes, and snippets.

@nbashaw
Forked from anonymous/gist:1059564
Created July 1, 2011 23:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nbashaw/1059565 to your computer and use it in GitHub Desktop.
Save nbashaw/1059565 to your computer and use it in GitHub Desktop.
<!-- this is wrong -->
<head>
<body>
<h1> <p> This is the first paragraph in large text, ever</p></h1>
</body>
</head>
<!-- this is right -->
<!DOCTYPE html>
<head>
</head>
<body>
<h1><p>This is the first paragraph in large text, ever</p></h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment