Demystifying Designing Web Sites for Accessibility


Demystifying Designing Web Sites to Meet Accessibility Standards

Lecture Notes

Demystifying Designing Web Sites to Meet Accessibility Standards<br />

Part 3: Toolbar Evaluation <br />Part One

Dick Banks<br /> EASI


Toolbars and Stylesheets

Lecture Notes

Toolbars and Stylesheets

IE Developers Toolbar

IE AIS/WAT-C Toolbar

FireFox Web Developers Toolbar

Firefox Accessibility Extension

Web Accessibility Toolbar Consortium

http://wat-c.org/


Embedded, Head and Linked Style

Lecture Notes

Inline, Head and Linked Style

INLINE

<body>

<p style="background: blue; color: white;">A new background and font color with inline CSS</p>

HEAD sometimes called inline style

<head>

<style type="text/css">

h1 {

font-family: Arial, Helvetica, sans-serif;

font-size:1.2em;

color: #000000;

text-align:center;

}

</style>

</head>

LINKED

<head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>EASI: Equal Access to Software and Information</title> <link rel="stylesheet" href="../../styles/style1.css" type="text/css" media="screen">


Linked Stylesheet

Lecture Notes

Linked Stylesheet

Use Relative

Not absolute


TopStyle Lite CSS Creator

Lecture Notes

TopStyle Lite

http://www.newsgator.com/Individuals/TopStyle/Default.aspx


Evaluating CSS

Lecture Notes

Evaluating CSS

IE Developers Toolbar - allows you to disable ALL CSS under the Disable menu.

AIS Toolbar - allows you to Disable CSS, Disable inline style, Show stylesheet

Mozilla Accessibility Extension - allows you to Disable Tag Styling and Disable CSS

FireFox Web Developers Toolbar by far the most versatile.


FF Web Developers Toolbar

Lecture Notes


Disable Linked Style FFWD

Lecture Notes


Images and IE AIS Toolbar

Lecture Notes


IE AIS Remove CSS Images

Lecture Notes


FAEX - Text Equialent List Images

Lecture Notes


FAEX - Text equivalents

Lecture Notes


FFWDT - Images

Lecture Notes


FFWDT - Images Outline Background Images

Lecture Notes


AIS - Colour

Lecture Notes


IE AIS Colour Analyzer

Lecture Notes


AIS - Juicy Studio

Lecture Notes

AIS - Juicy Studio

http://juicystudio.com/


AIS Colour - Grayscale

Lecture Notes


LINKS THAT MAKE SENSE

Lecture Notes


Links

Lecture Notes


Links (continued)

Lecture Notes

Links (continued)

Title attribute in link can help in links

GSA = General Services Administration

Javascript for links

<a href="#" onclick="openpopup()" onkeypress="openpopup()" title="terrible pop-up window">Probably won't get you there</a>

onkeypress - onclick - title


Links (continued)

Lecture Notes

Links (continued)

<script type="text/javascript"> function opennastypopup() { window.open("home.html", "", "toolbar=no,height=100,width=200"); return false; } </script>

<a href="monster.html" onclick="return opennastypopup()" onkeypress="return opennastypopup()">Homepage</a>


Links - Abbreviations and acronyms

Lecture Notes