Skip to content

Instantly share code, notes, and snippets.

@eades1
eades1 / code-standards.html.markdown
Created April 2, 2012 19:30
HTML Coding Standards

Doctype

<!DOCTYPE html>

Standards

We use HTML 5 standards, and an excellent reference is available at http://html5boilerplate.com/ (click on "Download Boilerplate" on the left and view source of index.html to see the comments).

@eades1
eades1 / code-standards.css.markdown
Created April 2, 2012 17:25
CSS Code Standards

Selectors

  • begin on a new line
  • space between selector and opening curly brace
  • closing curly brace, unindented, on its own line
selector {
  property: value;
}