Page title should be well defined | |
WAI / WCAG 1.0 Priority 2 checkpoint 13.2 | |
Issue Description The page has no valid TITLE. |
|
How to fix
To define the title of the page include the following HTML code just below the HTML tag at the beginning of the document: <HEAD> <TITLE> Buy the best strawberries fields in the world </TITLE> </HEAD> With Dreamweaver this can be achieved in a more simple way: simply fill-in the title box on top of the Editor window. Consider that titles, to be effective, have to satisfy the following conditions:
|
|
Issue Explanation The TITLE tag defines the document's title for:
A poor, or missing, TITLE would make the page much more difficult to
locate and understand in any situation where the user is required to
identify a window, figure out the context, selecting an item from a
bookmark list or search results.
To be effective titles should be brief and
informative (i.e. adequately describe the page). Titles should not contain HTML tags, as they would not be interpreted by browsers (and would clutter the meaningful part of the title). Finally, a page should contain exactly one title: if more than one is present only one of them will be considered by browsers. Consider also that often screen readers, when presenting the available frames to the user, read the page TITLE of the framed pages (not only the TITLE attribute of the FRAME element). Therefore, it is important for page TITLEs of framed pages to be well defined and meaningful. |