| Monash home | About Monash | Faculties | Campuses | Contact Monash |
| Staff directory | A-Z index | Site map |
HTML markup standardsAny markup tools may be used to customise the templates or to create web pages provided the following markup standards and guidelines are followed. Ensure all web pages use an appropriate document type definition (DTD)Documents must use a W3C-approved DTD. Either XHTML 1.0 Transitional or HTML 4.01 Transitional are permitted.
Markup should validate against the DTD usedMarkup should be syntactically correct and should be validated against these DTDs. After customising the templates, they should be validated before being made available to web authors. Web authors using customised templates should validate all pages and correct any errors. A suitable online validator is the W3C validator. Avoid using deprecated markupAvoid using deprecated markup elements such as Where possible (taking into account the behaviour of Netscape 4), avoid using deprecated attributes such as Structural markup must be usedMarkup styleDevelopers customising templates or those using text-style HTML editors should follow these style guidelines. Users of authoring tools such as Dreamweaver and FrontPage should follow as many of the guidelines as possible. Use lowercaseAll markup and attributes should be written in lower case. This is required for documents to validate against the XHTML DTD. It should also be used for HTML DTDs to enable a smoother transition to XHTML in the future. Wrong: Enclose attributes in quotation marksAttributes should be enclosed in quotation marks. This is required for documents to validate using XHTML DTDs and recommended practice for those using HTML DTDs. Wrong:
<table width=100%></table>Right: <table width="100%"></table>Use commentsUse HTML comments to show the page structure and mark important elements. This improves readability and can assist when correcting faulty markup. <!-- H E A D E R -->Encode special charactersEnsure that special characters are properly encoded. Take particular care when cutting and pasting from word-processed documents. " =
"& = &© = ©Resources |