<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WebAIM Blog</title>
	<atom:link href="http://webaim.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://webaim.org/blog</link>
	<description>The WebAIM Web Accessibility Blog</description>
	<lastBuildDate>Fri, 17 May 2013 20:51:14 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>10 Easy Accessibility Tips Anyone Can Use</title>
		<link>http://webaim.org/blog/10-easy-accessibility-tips/</link>
		<comments>http://webaim.org/blog/10-easy-accessibility-tips/#comments</comments>
		<pubDate>Thu, 09 May 2013 17:13:45 +0000</pubDate>
		<dc:creator>Jared Smith</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webaim.org/blog/</guid>
		<description><![CDATA[Today is Global Accessibility Awareness Day (GAAD). To celebrate and to help promote accessibility, here are 10 simple accessibility tips that most anyone can implement today into their web site&#8217;s HTML and CSS to make it more accessible. 1. Add Alternative Text to Your Logo Alternative text is presented to blind screen reader users in [...]]]></description>
				<content:encoded><![CDATA[<p>Today is Global Accessibility Awareness Day (GAAD). To celebrate and to help promote accessibility, here are 10 simple accessibility tips that most anyone can implement today into their web site&#8217;s HTML and CSS to make it more accessible.</p>
<h2>1. Add Alternative Text to Your Logo</h2>
<p><a href="http://webaim.org/techniques/alttext/">Alternative text</a> is presented to blind screen reader users in place of images they cannot see. Every image that conveys content or has a function on your web site should be given alternative text. But to get started, adding alternative text to your site logo presents your company or organization name to help users know which site they are on.</p>
<p>Simply find your logo image in your markup, and if it&#8217;s not present, add an <code>alt</code> attribute with your company or organization name as its value.</p>
<p><code>&lt;img src="webaimlogo.jpg" alt="WebAIM - Web Accessibility In Mind"&gt;</code></p>
<h2>2. Add Basic Landmarks</h2>
<p><a href="http://webaim.org/techniques/aria/#structure">ARIA landmarks</a> identify significant page areas, giving them meaning and making them more keyboard navigable. There are several available landmark types, but simply adding 3 of them &#8211; main, navigation, and search &#8211; can greatly enhance the accessibility of your page. Find the elements on your page that surround or contain the main body content, main navigation, and site search (this one will probably be a <code>&lt;form&gt;</code> element) and add the appropriate landmark role attribute (<code>role="main"</code>, <code>role="navigation"</code>, or <code>role="search"</code>. If your site uses HTML5 <code>&lt;main&gt;</code> or <code>&lt;nav&gt;</code>, add the role to these elements.</p>
<p><code>&lt;div id="maincontent" role="main"&gt;</code></p>
<p><code>&lt;form action="search.php" role="search"&gt;</code></p>
<h2>3. Enhance Focus Indicators</h2>
<p>Sighted keyboard users generally navigate through the links and form fields on a web page using the Tab and Shift+Tab keys on the keyboard. To help ensure they can visually identify which link or form field they have navigated to, you can add the following to your CSS file:</p>
<p><code>a:focus {<br />
outline:1px solid red;<br />
background:yellow;<br />
}</code></p>
<p>The colors may need to be customized to fit your site design, but they should be fairly distinctive.</p>
<p>To take this tip one step further, you can search your CSS files for <code>a:hover</code> and in each instance change it to <code>a:hover, a:focus</code>. This will ensure that keyboard users get the same visual highlighting when they navigate to items as mouse users get when they hover over an item.</p>
<h2>4. Identify Required Form Fields</h2>
<p>If your form has a mix of required and non-required form fields, add the <code>aria-required="true"</code> attribute to each input that is required. This will identify them as required to screen reader users.</p>
<p><code>&lt;input type="text" name="username" aria-required="true"&gt;</code></p>
<h2>5. Make Your Page Title an &lt;h1&gt;</h2>
<p>Your page title (not to be confused with the <code>&lt;title&gt;</code> element, though this should be brief and descriptive of the page content) is generally the big, bold text typically at the beginning of the main content that describes the content or functionality of that page. While a good <a href="http://webaim.org/techniques/semanticstructure/">heading structure</a> for your entire document is great for accessibility, simply making your main page title an <code>&lt;h1&gt;</code> will facilitate page navigation and comprehension.</p>
<h2>6. Identify Table Headers</h2>
<p>If your site has <a href="http://webaim.org/techniques/tables/data">data tables</a>, you can make them much more accessible by marking up table header cells appropriately. Find the row and/or column headers (almost always the cells in the first row and first column) and make sure they are marked up using the <code>&lt;th&gt;</code> element (stands for table header) instead of the <code>&lt;td&gt;</code> element (stands for table data). The <code>&lt;th&gt;</code> element should be given a <code>scope</code> attribute value of <code>col</code> if it&#8217;s a column header or <code>row</code> if it&#8217;s a row header.</p>
<p>Change <code>&lt;td&gt;Date&lt;/td&gt;</code> to <code>&lt;th scope="col"&gt;Date&lt;/th&gt;</code></p>
<h2>7. Identify Table Captions</h2>
<p>Most data tables have short descriptive text immediately before the data table that describes that table. You can associate that description or table caption to the table itself using the <code>&lt;caption&gt;</code> element. This element should be the first thing inside your <code>&lt;table&gt;</code> tag.</p>
<p>For example, you would change<br />
<code>&lt;p&gt;Class Schedule&lt;/p&gt;<br />
&lt;table&gt;&lt;tr&gt;....</code></p>
<p>to<br />
<code>&lt;table&gt;<br />
&lt;caption&gt;Class Schedule&lt;/caption&gt;<br />
&lt;tr&gt;....</code></code></p>
<h2>8. Avoid "click here"</h2>
<p>Search your site for the words "click here". This <a href="http://webaim.org/techniques/hypertext/link_text">link text</a> is ambiguous for all users, but is particularly difficult for screen reader users. It always adds additional, unnecessary text. Change the link text to be more descriptive of the content or function of the link.</p>
<p>For example, you would change<br />
<code>&lt;a href="prices.htm"&gt;Click here&lt;/a&gt; for prices</code></p>
<p>to<br />
<code>&lt;a href="prices.htm"&gt;Prices&lt;/a&gt;</code></p>
<h2>9. Remove tabindex</h2>
<p>Search your site's code for any <a href="http://webaim.org/techniques/keyboard/tabindex"><code>tabindex</code></a> attributes. If the attribute value is 1 or higher, and you're not absolutely sure why it was added or that it was added correctly, remove this attribute. Tabindex specifies a keyboard navigation order, but almost always causes more accessibility issues than it solves. If your navigation order is not logical (you can test this by navigating with the Tab key), you should restructure your underlying code so that it is logical.</p>
<h2>10. Check Your Page in WAVE</h2>
<p>The <a href="http://wave.webaim.org/">WAVE web accessibility evaluation tool</a> is an easy-to-use tool that gives you feedback about your web site and facilitates additional evaluation. Simply go to <a href="http://wave.webaim.org/">http://wave.webaim.org/</a>, enter your web page URL, and hit the button to get feedback on your page's accessibility.</p>
]]></content:encoded>
			<wfw:commentRss>http://webaim.org/blog/10-easy-accessibility-tips/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Low Vision Survey Results</title>
		<link>http://webaim.org/blog/low-vision-survey-results/</link>
		<comments>http://webaim.org/blog/low-vision-survey-results/#comments</comments>
		<pubDate>Mon, 29 Apr 2013 19:51:09 +0000</pubDate>
		<dc:creator>Jared Smith</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webaim.org/blog/</guid>
		<description><![CDATA[Results of WebAIM&#8217;s recent survey for those with low vision are now available at http://webaim.org/projects/lowvisionsurvey/. A few highlights are found below. The results of our motor disabilities survey will be available soon. This data underscores that users with low vision are very diverse. The range of vision loss varies greatly, as do the assistive technologies [...]]]></description>
				<content:encoded><![CDATA[<p>Results of WebAIM&#8217;s recent survey for those with low vision are now available at <a href="http://webaim.org/projects/lowvisionsurvey/">http://webaim.org/projects/lowvisionsurvey/</a>. A few highlights are found below. The results of our motor disabilities survey will be available soon.</p>
<p>This data underscores that users with low vision are very diverse. The range of vision loss varies greatly, as do the assistive technologies used. The vast majority of respondents use multiple assistive technologies, ranging from screen readers to simply changing text sizes in browsers. There is very high keyboard use in this population, strengthening arguments for ensuring keyboard accessibility.</p>
<p>For respondents that use a screen reader, ZoomText was the most popular, followed by JAWS and VoiceOver. Few respondents use System Access, Window-Eyes, or MAGic, and no respondents reported using ChromeVox.</p>
<p>Respondents report significant usage of mobile devices, with 13% of respondents using a mobile device as their primary device for navigating the web. iOS devices dominate in the mobile area, with 43% of respondents using these devices, and iOS users were more likely to use the accessibility settings of their mobile device.</p>
<p>Internet Explorer usage among respondents is notably higher than the overall population, perhaps suggesting lack of keyboard accessibility or assistive technology support in other browsers. </p>
<p>99.5% of respondents had JavaScript enabled when completing the survey.</p>
<p>Read the full low vision survey results at <a href="http://webaim.org/projects/lowvisionsurvey/">http://webaim.org/projects/lowvisionsurvey/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://webaim.org/blog/low-vision-survey-results/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Low Vision and Motor Disability Surveys</title>
		<link>http://webaim.org/blog/lowvis_and_motor_surveys/</link>
		<comments>http://webaim.org/blog/lowvis_and_motor_surveys/#comments</comments>
		<pubDate>Tue, 12 Feb 2013 22:30:58 +0000</pubDate>
		<dc:creator>Jared Smith</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webaim.org/blog/</guid>
		<description><![CDATA[In the spirit of our popular screen reader user surveys, WebAIM has launched two new surveys &#8211; a Survey of Users with Low Vision and a Survey of Users with Motor Disabilities. We invite all individuals with these disabilities to complete these brief surveys. The aggregate results of these surveys will be released publicly and [...]]]></description>
				<content:encoded><![CDATA[<p>In the spirit of our popular screen reader user surveys, WebAIM has launched two new surveys &#8211; a <a href="http://webaim.org/projects/lowvisionsurvey/">Survey of Users with Low Vision</a> and a <a href="http://webaim.org/projects/motordisabilitysurvey/">Survey of Users with Motor Disabilities</a>. We invite all individuals with these disabilities to complete these brief surveys.</p>
<p>The aggregate results of these surveys will be released publicly and will be used to inform design and development choices for those creating accessible web content. The surveys will remain open through March 15th.</p>
]]></content:encoded>
			<wfw:commentRss>http://webaim.org/blog/lowvis_and_motor_surveys/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Welcoming Dr. Sergio Luján Mora</title>
		<link>http://webaim.org/blog/sergio/</link>
		<comments>http://webaim.org/blog/sergio/#comments</comments>
		<pubDate>Fri, 11 Jan 2013 20:32:18 +0000</pubDate>
		<dc:creator>Jared Smith</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webaim.org/blog/</guid>
		<description><![CDATA[We are happy to welcome Dr. Sergio Luján Mora to the WebAIM team. Sergio will be spending six months with WebAIM on sabbatical from the University of Alicante, Spain, where he is a professor of Computer Engineering. Sergio has established himself as one of the foremost experts in web accessibility in Spain and has written [...]]]></description>
				<content:encoded><![CDATA[<p>We are happy to welcome Dr. Sergio Luján Mora to the WebAIM team. Sergio will be spending six months with WebAIM on sabbatical from the University of Alicante, Spain, where he is a professor of Computer Engineering. <img src="http://webaim.org/media/common/staff/sergio.jpg" alt="Photo of Sergio" style="float:right;margin:10px;">Sergio has established himself as one of the foremost experts in web accessibility in Spain and has written extensively on the topic.</p>
<p>We are excited to collaborate with Dr. Luján on <a href="http://wave.webaim.org/">WAVE</a> development, design and analysis of additional <a href="http://webaim.org/projects/screenreadersurvey4">WebAIM surveys</a>, and other topics in the web accessibility field. It is not typical for someone to leave coastal Southern Spain to come to snowy, bitterly cold Utah in January (it snowed 4 inches last night and will be below freezing for at least the next week), so we hope the transition has not been too much of a shock for him. We&#8217;ve assured him that Northern Utah is the perfect place for him to enjoy some of his other hobbies &#8211; hiking and mountain climbing. We&#8217;re looking forward to 6 months of collaboration with such an esteemed colleague.</p>
]]></content:encoded>
			<wfw:commentRss>http://webaim.org/blog/sergio/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>WebAIM&#8217;s 2012 Year in Review</title>
		<link>http://webaim.org/blog/2012review/</link>
		<comments>http://webaim.org/blog/2012review/#comments</comments>
		<pubDate>Thu, 20 Dec 2012 21:16:44 +0000</pubDate>
		<dc:creator>Jared Smith</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webaim.org/blog/</guid>
		<description><![CDATA[As 2012 comes to its conclusion, we at WebAIM wish you all a Merry Christmas and Happy Holidays. A new year gives us an opportunity to reflect on the past year and look forward to the future. WebAIM continued to provide web accessibility services throughout 2012. We provided 100&#8242;s of hours of trainings, including hosting [...]]]></description>
				<content:encoded><![CDATA[<p>As 2012 comes to its conclusion, we at WebAIM wish you all a Merry Christmas and Happy Holidays. A new year gives us an opportunity to reflect on the past year and look forward to the future.</p>
<p>WebAIM continued to provide <a href="http://webaim.org/services/">web accessibility services</a> throughout 2012. We provided 100&#8242;s of hours of trainings, including hosting three <a href="http://webaim.org/training">training sessions</a> here in Utah. Our first Advanced Web Accessibility Training session was very popular and was attended by many that had attended previous WebAIM trainings. Our web accessibility evaluation and technical assistance clients ranged from small non-profits to several Fortune 500 corporations. We are encouraged by the quickening pace and increased momentum of accessibility across the web and are happy to be a part of it.</p>
<p>2012 also saw the <a href="http://five.wave.webaim.org/">beta launch of WAVE version 5</a>. Work continues on the beta and we&#8217;re currently well underway on WAVE APIs and updated WAVE toolbars.</p>
<p>Here are a few WebAIM fun facts from 2012:</p>
<ul>
<li>2,531 &#8211; Posts to the <a href="http://webaim.org/discussion/">WebAIM e-mail discussion list</a>, our most active year yet</li>
<li>3,312,000 &#8211; Distinct e-mails sent via the discussion list.</li>
<li>59 &#8211; Approximate number of computer crashes caused by JAWS</li>
<li>184,000 &#8211; <a href="http://webaim.org/blog/">WebAIM blog</a> spam comments blocked by our spam filter.</li>
<li>111,000 &#8211; Number of airline miles flown by WebAIM staff</li>
<li>366 &#8211; Days this year in which Section 508 was still not updated</li>
<li>211 &#8211; Countries represented by WebAIM web site visitors</li>
<li>379 &#8211; Gigabytes of content downloaded from the WebAIM web site</li>
<li>29% &#8211; Browser usage on the WebAIM site for three separate browsers &#8211; Firefox, Chrome, and Internet Explorer</li>
<li>1,025,000 &#8211; Number of web pages analyzed with the <a href="http://wave.webaim.org/">WAVE web accessibility tool</a>, excluding countless millions others by the <a href="http://wave.webaim.org/toolbar">WAVE toolbar</a>.</li>
<li>2 &#8211; Number of children born to WebAIM staff</li>
<li>372 &#8211; Approximate number of diapers changed by WebAIM staff and spouses</li>
<li>1,782 &#8211; Number of responses to our <a href="http://webaim.org/projects/screenreadersurvey4/">fourth screen reader user survey</a></li>
</ul>
<p>Cyndi, Jon, Tom, Dio, Denise, Paige, Cecily, and I look forward to 2013 as we continue our mission of increasing web accessibility for people with disabilities.</p>
]]></content:encoded>
			<wfw:commentRss>http://webaim.org/blog/2012review/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Accessibility Improvements in Adobe Acrobat XI</title>
		<link>http://webaim.org/blog/acrobat-xi/</link>
		<comments>http://webaim.org/blog/acrobat-xi/#comments</comments>
		<pubDate>Fri, 30 Nov 2012 18:20:39 +0000</pubDate>
		<dc:creator>Jon Whiting</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webaim.org/blog/</guid>
		<description><![CDATA[Our article on Abode Acrobat accessibility has recently been updated to include accessibility improvements made in Acrobat XI, the newest version of Acrobat Professional. While I often experience my fair share of frustration with Acrobat, it is the only program that I am aware of that makes accessibility improvements with each new version. Acrobat XI [...]]]></description>
				<content:encoded><![CDATA[<p>Our <a href="http://webaim.org/techniques/acrobat/acrobat">article on Abode Acrobat accessibility</a> has recently been updated to include accessibility improvements made in Acrobat XI, the newest version of Acrobat Professional. While I often experience my fair share of frustration with Acrobat, it is the only program that I am aware of that makes accessibility improvements with each new version. Acrobat XI is no exception—it includes several new and improved features that make it much easier to create accessible PDF files.</p>
<h2>Alternative text for images</h2>
<p>Adding alternative text to images has always been a frustrating process in Acrobat. It usually entails viewing the document with the TouchUp Reading Order tool and searching for images that display the text “Figure &#8211; No alternate text exists.” You then have to right click on the image, select “Edit Alternate Text…”, and then type the alternative text in the provided box. This is very inefficient and time consuming, especially if a page has numerous images, or small images with overlapping alternative text. Acrobat XI now includes a “Set Alternate Text” option that allows you to add alternative text to all the images in your document at one time. It even includes the ability to identify an image as a “Decorative figure”, the PDF equivalent of alt=””.</p>
<h2>TouchUp Reading Order Tool</h2>
<p>There are two solid improvements to the “TouchUp Reading Order” tool. First, the number of available headings has been upgraded from 3 to 6. This is nice. While documents with sixth-level headings are not very common, I have often wished for an easier way to tag an item as an h4. An even more significant improvement is found in a single radio button that I passed over the first few times using the Acrobat XI. A new option to show “Structure types” allows you to view the tag structure of the page inline at a glance.</p>
<h2>Several Solid Improvements</h2>
<p>There are other accessibility features as well, including significant improvements to the accessibility “action wizard” and accessibility checker. The updated wizard quides you through several commonly-overlooked steps, including adding the document title and language, alternative text for images, etc. The accessibility checker does a better job of identifying issues that need to be checked manually and now provides helpful explanations for each rule. The export to DOC or PPT format is promising as well.</p>
<p>All in all, I am very pleased with the accessibility improvements in Acrobat XI. If you spend even a few hours a month modifying or creating tagged PDF files, this is a worthwhile upgrade.</p>
]]></content:encoded>
			<wfw:commentRss>http://webaim.org/blog/acrobat-xi/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>WAVE5 Beta Launch</title>
		<link>http://webaim.org/blog/wave5-beta-launch/</link>
		<comments>http://webaim.org/blog/wave5-beta-launch/#comments</comments>
		<pubDate>Thu, 04 Oct 2012 00:08:36 +0000</pubDate>
		<dc:creator>Jared Smith</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webaim.org/blog/</guid>
		<description><![CDATA[We&#8217;re very excited to announce the launch of the newly updated beta version of WAVE version 5. Please check it out at http://five.wave.webaim.org/. We will be participating in a free webinar on Tuesday, October 9th at 11am Pacific time (2pm Eastern) to share details on these new updates and the future of WAVE. Details are [...]]]></description>
				<content:encoded><![CDATA[<p>We&#8217;re very excited to announce the launch of the newly updated beta version of WAVE version 5. Please check it out at <a href="http://five.wave.webaim.org/">http://five.wave.webaim.org/</a>.</p>
<p>We will be participating in a free webinar on Tuesday, October 9th at 11am Pacific time (2pm Eastern) to share details on these new updates and the future of WAVE. Details are available at <a href="http://www.ada-audio.org/Webinar/AccessibleTechnology/Schedule/">http://www.ada-audio.org/Webinar/AccessibleTechnology/Schedule/</a></p>
<p>We want WAVE to be the most powerful and easiest-to-use web accessibility evaluation tool available, and this release is a significant update that represents several years of effort and thought. After some testing and a few feature and performance enhancements are completed, this version will soon replace the main version of WAVE found at <a href="http://wave.webaim.org/">http://wave.webaim.org/</a></p>
<h2>Notable changes:</h2>
<ul>
<li>There is now a sidebar that allows you to dynamically interact with WAVE report.</li>
<li>Greatly improved processing logic to ensure that WAVE gives you useful and accurate feedback about actual end-user accessibility issues.</li>
<li>Many new WAVE icons to give you feedback on additional aspects of web accessibility, including links that are missing focus indicators, missing document language, possible table captions, HTML5 and ARIA markup, and much more.</li>
<li>Color contrast checking based on WCAG 2.0 Level AA, and some nifty tools to preview and modify contrast.</li>
<li>Ability to filter results to WCAG AA, WCAG A, and Section 508 guidelines.</li>
<li>A code panel so you can see the underlying markup of your page as you evaluate it.</li>
<li>Significantly improved documentation so you can learn about web accessibility as you use WAVE.</li>
<li>Much more!</li>
</ul>
<p>We would love to hear your feedback on WAVE5. Please leave a comment below, or select the &#8220;Feedback&#8221; link in WAVE.</p>
<p>In the coming weeks and months we will be releasing updated WAVE toolbars, a WAVE API, and other WAVE tools.</p>
]]></content:encoded>
			<wfw:commentRss>http://webaim.org/blog/wave5-beta-launch/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Styles for Checking Color Reliance</title>
		<link>http://webaim.org/blog/styles-for-checking-color-reliance/</link>
		<comments>http://webaim.org/blog/styles-for-checking-color-reliance/#comments</comments>
		<pubDate>Fri, 31 Aug 2012 20:36:12 +0000</pubDate>
		<dc:creator>Jared Smith</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webaim.org/blog/</guid>
		<description><![CDATA[There are two primary accessibility issues that can be introduced by using color in web pages. First, you must ensure that there is sufficient contrast between foreground and background colors. Second, you must ensure that color is not the only means of conveying content or information. Poor color contrast can affect everyone with vision, but [...]]]></description>
				<content:encoded><![CDATA[<p>There are two primary accessibility issues that can be introduced by using color in web pages. First, you must ensure that there is sufficient contrast between foreground and background colors. Second, you must ensure that color is not the only means of conveying content or information.</p>
<p>Poor color contrast can affect everyone with vision, but has a particular impact on users with low vision. There are many tools to check for color contrast issues, such as <a href="http://webaim.org/resources/contrastchecker/">WebAIM&#8217;s Color Contrast Checker</a>.</p>
<p>Relying on color to convey content will impact blind users (page colors are not identified by screen readers), users with low vision who may override page colors, and users with color vision deficiency (or color blindness) who may have difficulty differentiating between certain colors. Checking for color reliance can be difficult and cannot easily be automated. Removing color information from the page so that it appears in grayscale allows an evaluator to more easily identify content that relies on color. We have long suggested that printing the page on a black and white printer is a good, though not particularly environmentally friendly, way to detect color reliance. Viewing the page in grayscale can also help you identify poor color contrast.</p>
<h2>Styles for Desaturation</h2>
<p>To make checking for color reliance and potential contrast issues easier, I put together a basic CSS file that will desaturate your entire web page to make it appear in grayscale. Simply add the following to any web page to try it out:</p>
<div class="codeblock">&lt;link href=&#8221;http://webaim.org/resources/desaturate.css&#8221; rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221;&gt;</div>
<p><a href="#desaturate" id="desaturate">Preview the desaturation styles on this page (JavaScript required).</a></p>
<h2>Style Details</h2>
<p>The following CSS3 style will apply a grayscale filter:</p>
<div class="codeblock">filter: grayscale(100%);</div>
<p>Most modern browsers implement CSS3 via vendor prefixes, and some don&#8217;t yet support CSS3 filters, but by declaring the prefixes, using an SVG file, and a proprietary filter for Internet Explorer, the following <em>should</em> work in all major browsers.</p>
<div class="codeblock">filter: grayscale(100%);<br />
-webkit-filter: grayscale(100%);<br />
-moz-filter: grayscale(100%);<br />
-ms-filter: grayscale(100%);<br />
-o-filter: grayscale(100%);<br />
filter: url(desaturate.svg#grayscale);<br />
filter: gray;</div>
<p>The <a href="http://webaim.org/resources/desaturate.svg">SVG file</a> must be referenced appropriately. It is of note that the results are sometimes a bit odd in IE. These styles were primarily derived from <a href="http://demosthenes.info/blog/532/Convert-Images-To-Black-And-White-With-CSS">this article</a>.</p>
<p>Hopefully this will be a useful resource in your accessibility evaluation of color.</p>
]]></content:encoded>
			<wfw:commentRss>http://webaim.org/blog/styles-for-checking-color-reliance/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Four Keys to System-wide Web Accessibility</title>
		<link>http://webaim.org/blog/four-keys-to-accessibility/</link>
		<comments>http://webaim.org/blog/four-keys-to-accessibility/#comments</comments>
		<pubDate>Thu, 28 Jun 2012 16:49:29 +0000</pubDate>
		<dc:creator>Jon Whiting</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webaim.org/blog/</guid>
		<description><![CDATA[The main focus of the GOALS project (a partner of WebAIM) is to help institutions of higher education develop a system-wide approach to web accessibility. At the beginning of the GOALS project, we analyzed several exemplary post-secondary institutions to identify what sets these institutions apart from schools that have been less successful in implementing web [...]]]></description>
				<content:encoded><![CDATA[<p>The main focus of the <a href="http://ncdae.org/goals/">GOALS project</a> (a partner of WebAIM) is to help institutions of higher education develop a system-wide approach to web accessibility. At the beginning of the GOALS project, we analyzed several exemplary post-secondary institutions to identify what sets these institutions apart from schools that have been less successful in implementing web accessibility. These findings helped form <a href="http://ncdae.org/goals/indicators.php">Recommended Practice Indicators for Institutional Web Accessibility</a>. This document is targeted to higher education, but I think the four principles at its foundation are universal. They are (in less academic terms):</p>
<ol>
<li>A shared commitment</li>
<li>A concrete policy and plan</li>
<li>Sufficient support for personnel</li>
<li>Ongoing evaluation</li>
</ol>
<h2>Shared commitment</h2>
<p>A shared commitment to system-wide accessibility is probably the most crucial element to ensure accessibility. Almost every exemplary group has a person who has assumed the role of &quot;accessibility champion.&quot; This person encourages others to be passionate about accessibility, but their enthusiasm is seldom enough to carry an entire organization over time. Some of this enthusiasm must be transferred to the highest level of the organization and to the people creating the content. Without administrative support, an organization lacks the necessary focus and funding. On the other hand, imposing a new accessibility policy without support from the ground level is likely to be met with resistance.</p>
<p>A few years ago, WebAIM provided several days of training for a very large corporation. While we are sometimes introduced by our hosts at the beginning of these trainings, the introduction at this training was very memorable. One of the company&#8217;s vice presidents took the time to provide a very enthusiastic introduction by including his own research about the importance of web accessibility worldwide and within their company. There could be little doubt in the minds of trainees that this was something that was important to the company and that it should be important to them individually.</p>
<h2>Policy and Plan</h2>
<p>While the decision to &quot;be accessible&quot; is important, a commitment to accessibility needs a more concrete roadmap. This roadmap has at least two key elements: a policy and an implementation plan.</p>
<p>The policy is the governance document for your group, and it will need to be reviewed and approved by the organization&#8217;s administrators or executive officers. It will probably be heavily scrutinized and will most likely be difficult to update, so it should be as succinct as possible. While policies differ, most should contain at least the following elements:</p>
<ul>
<li>A summary statement – This opening section should include a statement of commitment to accessibility, desired outcomes, etc. This might be the only paragraph that your president or CEO will read.</li>
<li>Effective date(s) &#8211; When will the policy take effect and will it take effect at once or in phases? </li>
<li>Scope &#8211; What sections will be repaired first? Are there any legacy areas which will be excluded?</li>
<li>A technical standard &#8211; The pros and cons of different technical standards is an article in itself, but most standards in the US are based on the relevant-but-aging WCAG 2.0 or the terribly-dated-but-should-be-updated-in-the-next-decade Section 508. Some groups may find it beneficial to separate their policy (which should change very little and may include general language like &quot;international standards&quot;) from their technical standard (which may change more frequently).</li>
<li>Procurement &#8211; What about the things you buy? This section is often overlooked.</li>
</ul>
<p>Once a standard has been established, an implementation plan should be put into place. An implementation plan is usually highly customized to an organization and should address issues such as timelines, budget, training, communication, etc. This document, or series of documents, should be updated more frequently than the policy.</p>
<h2>Support</h2>
<p>While web developers and other content creators should be included in the planning process, the reality is that the people who decide on the accessibility standard are not always the people who will be expected to create accessible content. Support must be available for web developers and other content creators. Most large groups will need a staff member or small team whose role includes web accessibility support. This requires ongoing funding, which brings us back to the need for administrative commitment.</p>
<p>Training within an organization is essential if efforts are to be sustainable. Training may be the most cost-intensive part of the whole effort—it includes the cost of the training provider as well as the time of every staff member in attendance. However, once this cost has been incurred, it should reduce the ongoing costs of reporting and retrofitting. Training may vary in length from a few hours for graphic designers or content creators to a day or more for developers and programmers.</p>
<h2>Evaluation</h2>
<p>We are often approached by groups who request a single assessment that identifies as many accessibility issues as possible. They think once they fix the issues in the report, they will be &quot;accessible.&quot; The reality is that the type of evaluation that is most helpful depends on where you are in the process. Here are a few examples:</p>
<ul>
<li>An initial assessment of a small representative sample is a great way to get started. We typically recommend an audit of 20 or so pages with a report that highlights accessibility issues, explains how these issues impact individuals with disabilities, and guidance for addressing these issues. This initial accessibility audit can be used to help educate administrators or executives about the importance of accessibility. It can also help identify which sections of the site should be addressed first and can even be used to customize the training given to web developers.</li>
<li>Once a policy, plan, and training are in place, a more detailed report will help identify additional accessibility issues. This report is often more detailed and technical and should be used to further refine training and support.</li>
<li>Wide-scale site monitoring can be helpful once a group is well on their way to creating accessible content. Automated reporting tools are often used during this phase.</li>
<li>Evaluation should not be limited to web content—the quality of the web accessibility policy and implementation should also be evaluated on a regular basis.</li>
</ul>
<h2>Take a step back</h2>
<p>When we encounter groups that are having difficulties implementing web accessibility system-wide, I have found that it is almost always due to a shortcoming in one of the above four areas. While it&#8217;s tempting to focus your accessibility efforts on technical standards and reports, it is usually best to take a step back and evaluate the true root of the problem. If your policy is not being followed, see if it is paired with an implementation plan. If you only have budget for a comprehensive evaluation, consider a less detailed report paired with training. Most importantly, make sure that your organization shares a vision for accessibility and that your staff knows that they will receive the training and support that they need. If these four elements are addressed, the accessibility of your content will certainly improve.</p>
]]></content:encoded>
			<wfw:commentRss>http://webaim.org/blog/four-keys-to-accessibility/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Screen Reader User Survey #4 Results</title>
		<link>http://webaim.org/blog/survey-4-results/</link>
		<comments>http://webaim.org/blog/survey-4-results/#comments</comments>
		<pubDate>Thu, 31 May 2012 19:53:00 +0000</pubDate>
		<dc:creator>Jared Smith</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://webaim.org/blog/</guid>
		<description><![CDATA[The results from our most recent screen reader user survey are now available at http://webaim.org/projects/screenreadersurvey4/. There were 1782 valid responses, making this the most popular survey thus far. We hope the data is informative and will help promote more accessible web development. A few items of note: JAWS is still the primary screen reader, but [...]]]></description>
				<content:encoded><![CDATA[<p>The results from our most recent screen reader user survey are now available at <a href="http://webaim.org/projects/screenreadersurvey4/">http://webaim.org/projects/screenreadersurvey4/</a>.</p>
<p>There were 1782 valid responses, making this the most popular survey thus far. We hope the data is informative and will help promote more accessible web development.</p>
<p>A few items of note:</p>
<ul>
<li>JAWS is still the primary screen reader, but usage continues to decrease as usage of NVDA and VoiceOver increases.</li>
<li>98.6% of respondents had JavaScript enabled.</li>
<li>The perception of free or low-cost screen readers is improving.</li>
<li>The perception of accessibility of web content is decreasing.</li>
<li>72% of the respondents use a screen reader on a mobile device, up from only 12% three years ago.</li>
<li>iOS device usage is significantly increasing and well above that of the standard population. Screen reader users represent a notable portion of the iOS device user market. Usage of Android devices is well below that of non-disabled users.</li>
<li>The use of properly structured headings remains of great importance.</li>
<li>The items that cause the most difficulty on the web remain largely unchanged over the last 2.5 years, with inaccessible Flash content and CAPTCHA being the most problematic.</li>
</ul>
<p><a href="http://webaim.org/projects/screenreadersurvey4/">View the full survey results.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webaim.org/blog/survey-4-results/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
