Forum Moderators: open

Message Too Old, No Replies

Tags for the impaired

what are they...?

         

fashezee

8:40 pm on Aug 26, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Does anyone know of all the tags that can be incorporated on a site for the impaired?
I am looking for a site that can display all the available tags and what they do.

i.e. - For those who cannot hear, I know that text within <h1> tags will be
emphazied if a user is using any one of those page reader softwares. I would like
to learn more about any tags that can be benefial for the impaired.

madcat

8:58 pm on Aug 26, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hey fashezee,

Just found this -

Section 508 U.S. Regulations- W3C [websitetips.com].

rcjordan

9:07 pm on Aug 26, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



check into webable [webable.com] and Bobby [bobby.watchfire.com]

rewboss

10:13 am on Aug 27, 2002 (gmt 0)

10+ Year Member



Careful use of structural tags, lang attributes and so on will certainly go a long way.

For example, instead of <i> you should use the following:

<em>...</em> for text that will actually be emphasized in speech (as in: &quot;Not <em>my</em> left, I meant <em>your</em> left!&quot;).

<dfn>...</dfn> when you are using a term in a sentence that actually defines it -- here, a different kind of emphasis is needed (as in: A <dfn>singleton tag</dfn> is a tag that does not require an end tag).

<var>...</var> to indicate variable text which will in reality be substituted for an actual value (as in: To copy a file, type <code>COPY <var>filename</var></code>).

<cite>...</cite> for titles of publications (as in: She quoted <cite>Hamlet</cite>).

Style sheet controls for just about anything else. (You can use <i> for this in HTML and XHTML 1.0 -- it's not deprecated but discouraged.) For example, foreign words and phrases should be in italics. In pure HTML you can use this: He reclined on the <i lang="fr">chaise longue</i>. With XHTML 2 and CSS-2 you should be able to put this is your stylesheet:

*[lang="fr"] { font-style: italic; }

...which will italicise any element with lang="fr" as an attribute.

fashezee

3:50 pm on Aug 27, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Thanks to everyone...you have provided very useful information

Eric_Jarvis

4:07 pm on Aug 27, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



the basic rule of making a site accessible is to use the html to structure the content conceptually FIRST...if you do that before you deal with visual presentation you will have something that is usable both with a graphical browser or with text to speech

madcat

2:31 am on Sep 4, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Access Everybody Wins [alistapart.com]

A nice article giving points on how to make your site more accessible.

Also, The Clock is Ticking [alistapart.com]

Accessibility is going to be the top priority for every Federal government webmaster in the new Millenium. State and Local Governments that do not already have rules for websites, will be adopting them real soon.