Skip to content

Instantly share code, notes, and snippets.

@markreale
Last active December 21, 2015 15:19
Show Gist options
  • Save markreale/6325958 to your computer and use it in GitHub Desktop.
Save markreale/6325958 to your computer and use it in GitHub Desktop.
The most basics of the basics. Document declaration, html, head, and body tags, and some comments about what goes where.
<!doctype html>
<html>
<head>
<!-- Inside the <head> tag will be content about your web page, or links to other resources. -->
</head>
<body>
<!-- Inside the <body> tag will be the content that appears in your browser window -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment