Designing Websites for Disabled / Elderly?
dangerz asks: "I'm in a class right now that gives you a client and you must design a site for them for free. My class was split up into a group, and I am the Project Manager / Lead Programmer in the group. Our client is a group for Disabled and Elderly People. Basically, what we need to do is create a site for them to sell their art work. We had a meeting with the board of the organization today where we explained the basics of a website and what we'd need from them to move on. They learned pretty quick, but there are some things they want that we think aren't aesthetically pleasing. Has anyone ever had to do a site where the target audience was elderly or disabled people, and if so, what steps did you take to make sure everything was simple and accessible?"
Elderly people generally can't read small fonts. It's probably their biggest complaint about web sites.
The solution is to use a font size of 1em for your normal text. That way your users will get the font size that they have chosen as their comfortable default.
This is pretty good advice for users of all ages actually.
Some govt webmasters wine about this, but it's really a good thing, given that all should be able to access govt data.
NO. Do not use the font tags.
There are two lists of recommendations which would be helpful for you and your team:
The W3C (the people behind the HTML, HTTP and CSS specifications) have published the Web Content Accessibility Guidelines for exactly this situation.
The most sensible methodology is to write basic, meaningful HTML, and then use CSS, Javascript, images, etc where they will add to the value of the website where you can do so without constructing barriers for certain groups of people. For the most part, HTML is already accessible, and it takes screw-ups to make it inaccessible. Unfortunately, the types of screw-ups that make websites inaccessible are very common (things like leaving out alt attributes on images, trying to fix font sizes, etc).
As for it being aesthetically pleasing, accessible websites don't have to be boring, but if you have to choose one or the other (you rarely do), wouldn't it be better that somebody could actually use a website, rather than it being a pretty-looking, but ultimately useless toy?
As far as structure. Simple Simple Simple. Big bold headers. Big separators. Lots of CLICK HERE links. Most people miss the mouseovers and don't really understand hyperlinking. And make those mouseovers VERY different. Invert the colors of the link when there is a mouseover event. Lastly, aim for 800x600, no bigger. My father uses XP at 8x6 on a 19" monitor and it is too small for him.
Fear Is the Only God
firstgov for seniors(although not quite as good as seniornet.)
There are also several libraries that have very good senior sections, such as Multnomah County Library, and Vancouver Library
Ahem. I'm no expert, but! I have done commercial web design and coding, and I work with (mentally and physically) disabled people and with disabled seniors. A few thoughts off the top of my head:
/. so I assume you know what that is), making the explicit point that you can vary text size in Firefox just by ctrl+scroll wheel. Tell everyone. It's the better browser. ;-)
1) Keep the site layout simple. I'd go with as much text and as little graphic content as possible, other than actual thumbnails of the art. Two columns at most (say, navigation on left and content on right), and use percentages rather than fixed column sizes.
2) High contrast. Bold primary colours in graphics, black text on white bg (or vice versa, but seniors might like the former better).
3) Use CSS. In fact, use several, and customize them for different types of visual presentation. Like, you could have a high-contrast, white on black, large text version, etc. Make them available in links; it might mean duplicating some HTML if you're not serving it up full of steaming dynamic goodness, but it's worth the effort... and text files are pretty small, relative to graphics anyway.
4) Label your navigation elements clearly, with descriptive text links rather than inscrutable icons.
5) You might think about a link to Firefox (you're on
6) TEST it. Find out what people like, what they don't. Using CSS, all you'll have to change (assuming they're OK with the graphics) is the stylesheet(s).
Good luck, it's nice to see people working to make the web more accessible. Cheers!
Corruptissima re publica plurimae leges.
I'm surprised that no one has posted this yet, but you should look at Bobby. You feed it a URL, it will spit out ways to help you make the page more accessible. It can be set to use Section 508 rules from the US Government or the W3's own recommendations on web accessibility.
I'd also recommend Zeldman's Designing with Web Standards. I provides excellent details for using CSS to control the entire appearance of your site and better support modern web standards. In addition, it has a whole chapter devoted to designing websites with accessibility in mind.