WebAIM - Web Accessibility In Mind

E-mail List Archives

Thread: Greek letter characters

for

Number of posts in this thread: 3 (In chronological order)

From: Keith Parks
Date: Wed, Aug 22 2007 1:40PM
Subject: Greek letter characters
No previous message | Next message →

Hi folks.

I'm trying to verify 508 compliance on some pages listing our
fraternities and sororities. The page shows the greek letters for
each organization, which I have marked up using the character entity
codes (proper terminology?). For instance...

ΑΕΠ for Alpha Epsilon Pi, etc.

Question: are these accessible? Any special mark-up needed? Would a
screen reader pronounce these characters as "alpha epsilon pie"?

Thanks,

Keith

******************************
Keith Parks
Graphic Designer/Web Designer
Student Affairs Communications Services
San Diego State University
San Diego, CA 92182-7444

(619) 594-1046

mailto: = EMAIL ADDRESS REMOVED =
http://www.keithparks.com
http://www.sa.sdsu.edu/communications
----------------------------------------------------------

(Objects on your screen may be closer than they appear)


From: John Foliot - Stanford Online Accessibility Program
Date: Wed, Aug 22 2007 3:10PM
Subject: Re: Greek letter characters
← Previous message | Next message →

Keith Parks wrote:
> Hi folks.
>
> I'm trying to verify 508 compliance on some pages listing our
> fraternities and sororities. The page shows the Greek letters for
> each organization, which I have marked up using the character entity
> codes (proper terminology?). For instance...
>
> ΑΕΠ for Alpha Epsilon Pi, etc.

While I'm not sure if any screen reading technology actually support this at
this stage, I would consider wrapping those characters in a span, and apply
the lang attribute:

<span lang="grc">&#x0391; &#x0395; &#x03A0;</span>

Where grc = iso639-2 language code for "Greek, Ancient" [source:
http://www.loc.gov/standards/iso639-2/php/code_list.php]

While it might not "read" properly (due to poor screen reader
implementation), you've gone "above and beyond". Thinking this though even
further, you might also apply the title attribute to the span:

<span lang="grc" title="Alpha Epsilon Pi">&#x0391; &#x0395; &#x03A0;</span>

Hmmm... Ya, that's what I would probably do... (and while I always caution
users about using the title attribute/tooltip "feature", in this instance it
also serves double duty for cognitive impairment issues, as not everyone
would know what those greek letter are or how they are "read")

HTH

JF

From: Keith Parks
Date: Wed, Aug 22 2007 5:30PM
Subject: Re: Greek letter characters
← Previous message | No next message

On Aug 22, 2007, at 2:07 PM, John Foliot - Stanford Online
Accessibility Program wrote:

> [snip...]
>
> Hmmm... Ya, that's what I would probably do...

Makes sense.

Thanks a bunch,

Keith

******************************
Keith Parks
Graphic Designer/Web Designer
Student Affairs Communications Services
San Diego State University
San Diego, CA 92182-7444

(619) 594-1046

mailto: = EMAIL ADDRESS REMOVED =
http://www.keithparks.com
http://www.sa.sdsu.edu/communications
----------------------------------------------------------

(Objects on your screen may be closer than they appear)