HTML & CSS Coding Standards

Our preferred way of coding pages using HTML and CSS

HTML Standards

Images

Alt tags

Incorrect: missing alt attribute, don't use title attribute.
<img src="/images/example.jpg" title="An example image" />
Correct
<img src="/images/example.jpg" alt="An example image" />
Scroll to Top