Skip to content

Instantly share code, notes, and snippets.

View ctide's full-sized avatar

Chris Burkhart ctide

View GitHub Profile
@ctide
ctide / HTML.md
Last active August 29, 2015 14:27
HTML Lesson

Every HTML page we make here will follow the same pattern:

<!DOCTYPE html>
<html>
</html>
  1. Doctype - tells the browser which version of HTML we are using. We will only be writing modern HTML, so we only need DOCTYPE html.