Suffix

Web design checklist

Attention points to check off before launching a website.

It’s easy to lose track of all the little attention points when optimizing a website. This list helps me to check off each point. The list is by no means exhaustive and not every item is required all the time, but it’s a start. It’s a checklist, not a tutorial on how to build websites and it assumes you have some basic understanding about accessible web design: make sure your site works without JavaScript, split your HTML structure from the layout, etc.

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
    <title><title>
  </head>
  <body>
  </body>
</html>

Resources