From http://www.w3schools.com (Copyright Refsnes Data)
An accessible web site is a web site that can be used by disabled users.
Disabled users are users with disabilities or bad user conditions.
WAI (created by the World Wide Web Consortium (W3C) in 1997) is a set of guidelines intended for web developers, authors, and designers- about how to make web content accessible to people with disabilities.
The goal of these guidelines is accessibility, but they will also help make web contents available to more browsers (voice browsers, cell phones, hand-held devices), and to more users working in difficult environments (hands-free, strong light, darkness, bad sight, heavy noise).
Yes it is.
Millions of people with disabilities are surfing the Internet every day, and even more millions are using poor browser equipment, or working under difficult user environments.
If your website lacks features such as resizable fonts, images with proper text descriptions, and easy navigation, these people will not be able to access your information.
In fact: Your site violates the rights of these people.
Here are some other reasons for making your site more accessible:
Use only relative font sizes, and let the user be able to use the browser menu (View - Text Size) to change the default text size.
Can you read this?
Can you read this?
Can you read this?
Can you read this?
To change the font size, select view - text size - in your browsers menu.
The alt attribute allows you to provide a text equivalent for an image (and for some other elements).
Example:
<img src="images/bana.jpg" alt="Banana" /> |
Sometimes a web browser will not display your images. The reason could be one of many:
If you use the "alt" attribute, most browsers will at least display or read the "alt" description.
From http://www.w3schools.com (Copyright Refsnes Data)