Begin site navigation:
Jump to Section Topics | Jump to Page Content | Contact Us | DenverGov Home
City and County of Denver Web Accessibility Guidelines
End site navigation.
HTML Techniques
Begin left menu:
Section Topics
End of left menu.
Tech Spotlight
assistive technology photo: Closed-captioning for video.

Begin main content:

Fonts

Whether it is merely personal preference or necessitated by a visual impairment, individuals may view pages using fonts or color schemes other than those originally intended. Using the depreciated <FONT> element along with its associated attributes (font-face, color and size) may make accessing your information difficult or impossible for individuals who are color-blind, screen-reader users, individuals with low-vision, users of some hand-held devices, and individuals using a monochrome display.

Fixed font sizes may prevent some users from being able to access your information. Increasing the font size alone is often inadequate for users with low-vision. Visitors should be able to vary the size of the display font and have the information remain clear and accessible.

REQUIRED:

Avoid deprecated features of W3C technologies. [W3C WCAG 1.0, Checkpoint 11.2, Priority 2]

Use relative rather than absolute units in markup language attribute values and style sheet property values. [W3C WCAG 1.0, Checkpoint 3.4, Priority 2]

EXAMPLE:

Style sheets allow font-size to be defined in a number of ways. Below is one example:

In the associated stylesheet:

.mytxt
{
color: #333333;
font-weight: normal;
text-decoration: italic;
font-size: 140%;
font-family: verdana, arial, sans-serif;
}


In the code for the page:

<span class="mytxt">Contact Us</span>

End of main content.
Begin page footer:
Validate the structure of this page: XHTML | CSS |
Check the accessibility of this page: WAVE | Bobby | Cynthia|
End of page.