Unique Title Overview
Overview
Good web design allows users to easily identify what website and sub-section of the website they are using. The identity or "branding" of a website is done through the combination of text, colors, graphical styling and logos that are used for the overall look and feel of the website. Many people with disabilities cannot see or use the graphics for various reasons and therefore need to have unique title text that identifies the website and the context of the current web page.
The title element in the head section needs to contain information about the website and sub-section, and an h1
element containing the sub-section information is needed.
Benefits to People with Disabilities
- Screen reader users can easily identify the web resources they are viewing because the
titleelement content is easily read by the screen readers such as Window-Eyes, Jaws and HAL. - Screen reader users can easily determine whether a new web resource has been loaded and what the purpose of the current web resource is. They do not need to guess by interpreting the information available on the web resource .
- Using
h1element makes it easier for keyboard users, including people with physical disabilities and screen reader users, to navigate using keyboard command in some broswers.
Benefits to All Users
- Users can easily identify purposes of web resources.
Benefits to Developers
- It is easier to style titles consistently across web resources using CSS because
h1is designated to represent the title. - The more web developers separate structure from styling, the easier it is for them to create and update resources.
HTML Markup Details
titleelement- The
titleelement in theheadelement should contain both the title of the website and title of the web resource. - The
titleelement is typically rendered in the title bar at the top of the graphical window of most graphical browsers such as Internet Explorer, Opera, Mozilla and Firefox. h1element- The
h1element should contain the title for the web resource and may contain the title of the website. - The page should contain at least one and no more than two
h1elements.
Related Accessibility Requirements
- Illinois Information Technology Accessibility Standards
- 1.3 Provide meaningful page titles.
- Section 508
- none
- Web Content Accessibility Guidelines 2.0 (WCAG 2.0)
- 2.4.2 Page Titled: Web pages have descriptive titles.
- 2.4.10 Section Headings: Section headings are used to organize the content.
- Web Content Accessibility Guidelines 1.0 (WCAG 1.0)
- 3.5 Use header elements to convey document structure and use them according to specification.
- 13.4 Use navigation mechanisms in a consistent manner.
