What are the best-practices for making a website accesibility-friendly? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T06:54:31Z http://stackoverflow.com/feeds/question/462767 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/462767/what-are-the-best-practices-for-making-a-website-accesibility-friendly 7 What are the best-practices for making a website accesibility-friendly? Micah 2009-01-20T19:36:57Z 2009-01-22T13:19:05Z <p>I'm looking for best-practices for designing a site that with accessibility in mind. The site is going to have a lot of older and less-abled individuals visiting it, and I want to make it as friendly for them as possible. Is there a resource that describes all the right tags, and attributes to use?</p> <p>Thanks!</p> http://stackoverflow.com/questions/462767/what-are-the-best-practices-for-making-a-website-accesibility-friendly/462773#462773 1 Answer by Jekke for What are the best-practices for making a website accesibility-friendly? Jekke 2009-01-20T19:39:23Z 2009-01-20T19:39:23Z <p>The government provides a standard called <a href="http://www.section508.gov/" rel="nofollow">section 508</a> that lays out what makes a site compatible.</p> http://stackoverflow.com/questions/462767/what-are-the-best-practices-for-making-a-website-accesibility-friendly/462779#462779 2 Answer by Kip for What are the best-practices for making a website accesibility-friendly? Kip 2009-01-20T19:41:11Z 2009-01-20T19:41:11Z <p>Among other things.. provide "alt" and "title" attributes for every "img" tag.</p> http://stackoverflow.com/questions/462767/what-are-the-best-practices-for-making-a-website-accesibility-friendly/462781#462781 1 Answer by mouviciel for What are the best-practices for making a website accesibility-friendly? mouviciel 2009-01-20T19:41:29Z 2009-01-20T19:41:29Z <p>A good resource is found at W3C site: <a href="http://www.w3.org/TR/WAI-WEBCONTENT/" rel="nofollow">Web Content Accessibility Guidelines</a>.</p> http://stackoverflow.com/questions/462767/what-are-the-best-practices-for-making-a-website-accesibility-friendly/462783#462783 7 Answer by annakata for What are the best-practices for making a website accesibility-friendly? annakata 2009-01-20T19:42:14Z 2009-01-20T19:49:17Z <p>There are many many resources depending on your goals.</p> <p>Strongly suggest you start with:</p> <ul> <li><p><a href="http://www.section508.gov/" rel="nofollow">Section 508</a> (US legislation, obviously US centric though)</p></li> <li><p>W3C's <a href="http://www.w3.org/WAI/" rel="nofollow">Web Accessibility Initiative</a> and <a href="http://www.w3.org/TR/WCAG10/" rel="nofollow">Web Content Accessibility Guidelines</a></p></li> </ul> <p>edit: </p> <p>Forgot to mention that WCAG has come in for some considerable criticism which makes <a href="http://wcagsamurai.org/" rel="nofollow">this</a> guy's efforts very helpful.</p> <p>Also wanted to add, from personal experience, to remember that WA doesn't mean "blind people with screen readers". <strong>There are all manner of access limitations</strong> which you have to think of as well: e.g. dexterity issues related to e.g. muscle control, unusual input devices, and simple screen magnification.</p> <p>Good luck!</p> http://stackoverflow.com/questions/462767/what-are-the-best-practices-for-making-a-website-accesibility-friendly/462798#462798 3 Answer by Miles D for What are the best-practices for making a website accesibility-friendly? Miles D 2009-01-20T19:45:15Z 2009-01-20T19:45:15Z <p>Try looking at Wikipedia's article on <a href="http://en.wikipedia.org/wiki/Web_accessibility" rel="nofollow">Web Accessibility</a>. It contains lots of links to various sources of information for different countries, which may be useful depending on your target audience. The W3C was one of the original standards, but has plenty of critics.</p> http://stackoverflow.com/questions/462767/what-are-the-best-practices-for-making-a-website-accesibility-friendly/462820#462820 1 Answer by Jas Panesar for What are the best-practices for making a website accesibility-friendly? Jas Panesar 2009-01-20T19:49:59Z 2009-01-20T19:49:59Z <p>A few things to keep in mind:</p> <ul> <li><p>have a CSS link on each page that easily allows the font size to be changed. </p></li> <li><p>Visually try to have appropriate presentation that is easy to read in a backwards S fashion.. left to right, back down.. etc..</p></li> <li><p>ensuring that all the alt tags, etc, as mentioned in the other responses is vital.</p></li> <li><p>see if there are some disability websites out there that specialize in testing your site. no harm in seeing what they list as being important to do.</p></li> <li><p>make sure things are easy to read and find. this alone will make the job much easier.</p></li> </ul> http://stackoverflow.com/questions/462767/what-are-the-best-practices-for-making-a-website-accesibility-friendly/462937#462937 2 Answer by David Thornley for What are the best-practices for making a website accesibility-friendly? David Thornley 2009-01-20T20:21:01Z 2009-01-20T20:21:01Z <p>Get a text-only browser like lynx. If your site works in lynx, it's likely to work for people who need screen readers or have other handicaps. It's no substitute for looking up the regulations, but it's a quick and easy check.</p> http://stackoverflow.com/questions/462767/what-are-the-best-practices-for-making-a-website-accesibility-friendly/463051#463051 1 Answer by Saqib for What are the best-practices for making a website accesibility-friendly? Saqib 2009-01-20T20:51:16Z 2009-01-20T20:51:16Z <p>There are many many resources on this topic. In fact, the danger is of information overload, rather than not enough information.</p> <p>But an alternative approach is to think about your HTML page in generic terms, rather than the visual output you see in the web browser. If you wrote a piece of software that interpreted the website what would be helpful? This is a round-about way of saying use good semantics. My top tips would be to use standard XHTML for content and CSS for design. Also look up topics such as "progressive enhancement" and "behavioral Javascript".</p> <p>But for resources:</p> <ul> <li>The W3C's Web Accessibility Initiative: www.w3.org/wai</li> <li>www.WebAIM.org</li> <li>www.Accessify.com</li> <li>www.CSSZenGarden.com for inspiration on how semantic markup can be styled to look very different.</li> </ul> http://stackoverflow.com/questions/462767/what-are-the-best-practices-for-making-a-website-accesibility-friendly/463133#463133 -1 Answer by Todd Friedlich for What are the best-practices for making a website accesibility-friendly? Todd Friedlich 2009-01-20T21:11:39Z 2009-01-20T21:11:39Z <p>A must read is Jeffery Zeldman's "Designing with Web Standards"</p> <p>Not sure if you are using Dreamweaver, but he has also just realeased a toolkit to validate your site for accessiblity.</p> http://stackoverflow.com/questions/462767/what-are-the-best-practices-for-making-a-website-accesibility-friendly/463350#463350 2 Answer by Peter Hilton for What are the best-practices for making a website accesibility-friendly? Peter Hilton 2009-01-20T22:12:11Z 2009-01-20T22:12:11Z <p>For another perspective, see the <a href="http://www.webrichtlijnen.nl/english/" rel="nofollow">Dutch Government Web Guidelines</a>.</p> http://stackoverflow.com/questions/462767/what-are-the-best-practices-for-making-a-website-accesibility-friendly/463365#463365 0 Answer by Jared for What are the best-practices for making a website accesibility-friendly? Jared 2009-01-20T22:17:56Z 2009-01-20T22:38:48Z <p>It hasn't been mentioned yet so I figure I would mention it. If you want blind users to be able to use your site avoid flash. At the most 1% of flash I find on the internet is accessible.</p> http://stackoverflow.com/questions/462767/what-are-the-best-practices-for-making-a-website-accesibility-friendly/464531#464531 0 Answer by alepuzio for What are the best-practices for making a website accesibility-friendly? alepuzio 2009-01-21T09:12:07Z 2009-01-21T09:12:07Z <p>A good list of resources about accessibility (colourblind screen-reader,typography etc) is <a href="http://www.mezzoblue.com/zengarden/book/links/" rel="nofollow">here</a> in design way. For validation of web site and general documentation I use the <a href="http://www.w3.org/" rel="nofollow">W3C</a>.</p> http://stackoverflow.com/questions/462767/what-are-the-best-practices-for-making-a-website-accesibility-friendly/464575#464575 4 Answer by Toby Mills for What are the best-practices for making a website accesibility-friendly? Toby Mills 2009-01-21T09:27:17Z 2009-01-21T09:27:17Z <p>Here's a quick list I tend to follow</p> <ul> <li>Ensure it uses clean XHTML markup ideally to AAA standards,</li> <li>Try where possible to spilt HTML, CSS, Javascript into respective files,</li> <li>Create different style sheets for print, screen, etc.,</li> <li>Ensure you take into consideration colours and fonts for the hard of sight and colour blindness,</li> <li>Try to only place the main navigation at the top of the code so that the actual content appears near the top of the code, this way people do not have to scroll to far to see the content especially if they are using a screen reader / low res,</li> <li>If you do have a lot of navigation before the content then place a link near the top allowing users to skip to the content,</li> <li>Ensure the very first link on the page is to a text-only / low graphics version of the site,</li> <li>Ensure ALL pages and all Essential functionality will work without JavaScript turned on,</li> <li>There are lots of plugins for firefox to assist with development including: <ul> <li>Web Developer</li> <li>No Script</li> <li>HTML Validator</li> <li>Firebug</li> </ul></li> <li>Ensure the page renders across all browsers including old ones even if that means it works though does not match design exactly.</li> <li>Ensure HTML, CSS, JavaScript is kept to the minimum file size to aid downloading times e.g. Remove white space and blank lines,</li> <li>Always use LABELS in forms and alt, title tags in links and images,</li> <li>Only use Tables for tabular data and ensure data appropriately labelled,</li> <li>Where possible do not use JavaScript to write content to a page but use CSS to hide it, that way is JavaScript is disabled or does not work properly then content will still appear,</li> <li>Always ensure you use onkeypress as well as onclick events in JavaScript encase the user can not / is not using a mouse.</li> </ul> <p>Finally if you have to use blank images on a page for tracking etc. then don't give them Alt tags. This is my own view and is one which is hotly debated on-line especially when 1x1px images used to be used for spacing. However as far as I see it, if you are using a screen reader then you don't what it reading out stupid comments for images it does not need to see.</p> http://stackoverflow.com/questions/462767/what-are-the-best-practices-for-making-a-website-accesibility-friendly/469078#469078 0 Answer by Andy for What are the best-practices for making a website accesibility-friendly? Andy 2009-01-22T13:19:05Z 2009-01-22T13:19:05Z <p>If you're developing in asp.net the opensource NAAK tool might be useful.</p>