Page titles

Rules


Rationale

Document titles help users orientate themselves within web sites and apps. The document <title> element content is often the first thing that a speech output user will hear. It acts as a confirmation of what page they have arrived at. Document titles commonly have the same content as the page's <h1> element.


Techniques

Good code example


                <title>BBC Weather</>
            

Bad code example


                    <title>BBC</>
                

Tests

Procedure Expected result Type
Examine the title text of each document by viewing the document source code and searching for the <title> element. The document title should describe the primary title of the document. Manual