Skip to content

Instantly share code, notes, and snippets.

@seanuk
seanuk / checklist.md
Last active August 29, 2015 14:18 — forked from cole007/checklist.md
  • 404 page
  • print CSS
  • robots.txt
  • humans.txt
  • favicon.ico
  • compresses CSS
  • minified JS
  • google analytics code
  • webmaster tools
  • 301s (redesign sites)
@seanuk
seanuk / checklist.md
Last active August 29, 2015 14:18 — forked from cole007/checklist.md

@asclearasmud

SEO

  • robots.txt (ignore any system files/folders)
  • humans.txt
  • responsive meta tag (ensure user scaleable is set to yes)
  • meta keyword and description
  • Google Analytics code
  • site added to Google Webmaster Tools (GWT)
  • sitemap.xml added and uploaded to GWT
@seanuk
seanuk / mq.css
Created October 6, 2012 07:17 — forked from chriscoyier/mq.css
Media Queries for Retina displays
@media only screen and (min-width: 320px) {
/* Small screen, non-retina */
}
@media
only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 320px),
only screen and ( min--moz-device-pixel-ratio: 2) and (min-width: 320px),
only screen and ( -o-min-device-pixel-ratio: 2/1) and (min-width: 320px),