HTML Coding Standard
From GLMWiki
All web documents are to be written as HTML 4.01 Strict[1]. This ensures less confusion and stricter coding.
HTML Doctype
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
Indenting and line breaks
- One line for each HTML element.
- One tab between every child/parent.
Example:
<p>This is my list: <ul> <li>Item1</li> <li>Item2 <ul> <li>Item2.1</li> <li>Item2.2</li> </ul> </li> </ul> It is a nice list</p>