|
||||
Use Color for Design, not Context:(c) Web pages shall be designed so that all information conveyed with color is also available without color, for example from context or markup. Good web design may use color and other visual markers to help users navigate the site. For example, visited links may be a different color, font, or size to help users remember where they have been in the site. However, color and other visual elements should not be used as the only guide. A web site that asks students to use the RED links and faculty to use the BLUE links would be a poor example of color use. To fix the problem, the designer might put all the RED links in the left column and the BLUE links in the right column of a layout table and indicate the difference between the columns in the column headers and table summary. Here is a sample table:
And here is the code that created this table:
"Links for faculty, links for students, grade reports, course descriptions, internal procedures, faculty contact information, scheduling, events and workshops." In this arrangement, the information for faculty and students is read alternately, rather than in a group. A better way to organize this table would be:
The code for this version of the table is: <table width="60%" border="2" summary="This
table contains navigation links for faculty and students. The faculty links
are in the left column and the student links are in the right column."> In this version, JAWS would read all the faculty-related links before reading the student links. In addition, the links have been put into an unordered (bulleted) list, and JAWS would announce how many items are in each list before reading each item. This makes it even easier to follow the table information. For more on organizing data tables, see the Data Table Headers section of this guide. Tip for testing -- There are two simple ways of testing a web page to determine if this requirement is being met: by either viewing the page on a black and white monitor, or by printing it out on a black and white printer. Both methods will quickly show if the removal of color affects the usability of the page. Automated testing -- See what your pages look like to a users with different levels of colorblindness. Process your pages through the Colorblind Web Page Filter. |