Skip to content

Instantly share code, notes, and snippets.

@jubalm
Last active August 29, 2015 14:26
Show Gist options
  • Save jubalm/b537ab6b726be1d6d4cb to your computer and use it in GitHub Desktop.
Save jubalm/b537ab6b726be1d6d4cb to your computer and use it in GitHub Desktop.
HTML Authoring

HTML Authoring Conventions

  • HTML should present itself without the stylesheet
  • Check for unclosed tags
  • Check for Doctype declaration
  • Do not use inline-styles
  • Document should have title and meta tags
  • Do not use headings for font size
  • Use line breaks to separate text, not sections
  • Always put proper alt tags to images
  • Specify image width and height
  • If it's not going to be displayed, it should not be in the markup
  • Don't use the <center> tag to align text
  • Use lowercase letters for tag name
  • Make sure IDs are only used once
  • Validate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment