473,408 Members | 2,832 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,408 software developers and data experts.

Site on extreme accessibility

i'm building a site about extreme accessibility, i.e.: how (and why)
to get sites to become fully accessible, *beyond* W3C Web
Accessibility Initiative guidelines. it's far from being completed (i
just started it off!), so i'd very much appreciate any comment on the
site/issue: www.accessibility.ws

(fyi: i a non-commercial, personal research project)

cheerio!

Feb 18 '07 #1
8 2028
"cms-hispano.org" <mi*********@gmail.comwrote:
>i'm building a site about extreme accessibility, i.e.: how (and why)
to get sites to become fully accessible, *beyond* W3C Web
Accessibility Initiative guidelines. it's far from being completed (i
just started it off!), so i'd very much appreciate any comment on the
site/issue: www.accessibility.ws
<h1>Welcome to Accessibility.ws home page, the most accessible portal!
Please, choose through the following links what you want to do in this
site; none of them will open in a new window or lead you to
non-accessible sites: I want to skip navigation | I want to read news
about Accessibility.ws | I want to browse through your accessibility
tutorials page | I want to read more about you | I want to contact
you</h1>

That's one hell of an <h1and probably not great accessibility.

You're also using <span class="bold"where you should be using <h2>
or <h3(the "Tutorial number one: Accessibility and capabilities"
heading); using <acronymwhere you should be using <abbr(WWW isn't
pronounced as a word and so isn't an acronym); and the tutorial page
fails validation. So at the moment you don't even meet WAI Level AA,
to say nothing about going "beyond WAI guidelines".

Sorry to focus on the technicalities, but with only two short pages of
fairly non-specific content it's hard to give any feedback on anything
else.

Steve
--
"My theories appal you, my heresies outrage you,
I never answer letters and you don't like my tie." - The Doctor

Steve Pugh <st***@pugh.net <http://steve.pugh.net/>
Feb 18 '07 #2
cms-hispano.org wrote:
i'm building a site about extreme accessibility, i.e.: how (and why)
to get sites to become fully accessible, *beyond* W3C Web
Accessibility Initiative guidelines.
www.accessibility.ws
<h1><span class="bold">Welcome to Accessibility.ws home page, the most
accessible portal!</span><br>
Please, choose through the following links what you want to do in this site;
none of them will open in a new window or lead you to non-accessible sites:
<a href="#MainContent" title="Skip navigation">I want to skip navigation</a>
| <a href="#News" title="News">I want to read news about
Accessibility.ws</a>
| <a href="tutorials.html" title="Tutorials">I want to browse through your
accessibility tutorials page</a| I want to read more about you | <a
href="contact.html" title="Contact">I want to contact you</a></h1>
What's wrong with this code? Pretty much everything. I don't think you
should be writing about web accessibility until you learn a lot more
about it, or at least about proper HTML symantics.

"Design and aesthetics are not a must within the WWW."
Yeah, but they don't hurt if you're trying to impress anyone. ;) A
completely unadorned design just promotes the lame excuse that one can't
make an accessible site that is also attractive.

--
Berg
Feb 18 '07 #3
Sun, 18 Feb 2007 19:34:41 +0000 from Steve Pugh <st***@pugh.net>:
"cms-hispano.org" <mi*********@gmail.comwrote:
i'm building a site about extreme accessibility
Is it just me, or do others find that "extreme" as an adjective
correlates highly with the bogus?

--
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com/
HTML 4.01 spec: http://www.w3.org/TR/html401/
validator: http://validator.w3.org/
CSS 2.1 spec: http://www.w3.org/TR/CSS21/
validator: http://jigsaw.w3.org/css-validator/
Why We Won't Help You:
http://diveintomark.org/archives/200..._wont_help_you
Feb 18 '07 #4
cms-hispano.org wrote...
>i'm building a site about extreme accessibility, i.e.: how (and why)
to get sites to become fully accessible, *beyond* W3C Web
Accessibility Initiative guidelines. it's far from being completed (i
just started it off!), so i'd very much appreciate any comment on the
site/issue: www.accessibility.ws
You have spelt "accessibility" wrong three times on the first page.
--
Martin Clark
Feb 19 '07 #5
Steve Pugh wrote:
>
[...]; using <acronymwhere you should be using <abbr(WWW isn't
pronounced as a word and so isn't an acronym); [...]
Likely the gaffe is because the most used browser, IE, does not support
<abbr>.

--
jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
Feb 19 '07 #6
Sub titulo Re: Site on extreme accessibility
scripsit Jim Moe:
Steve Pugh wrote:
>>
[...]; using <acronymwhere you should be using <abbr(WWW isn't
pronounced as a word and so isn't an acronym); [...]
Likely the gaffe is because the most used browser, IE, does not
support <abbr>.
I have no intentions of defending the bogus "site on extreme accessibility"
(which looks like malevolent bashing of accessibility, even if I keep saying
to myself "never ascribe to malevolence anything that can be conveniently
explained as stupidity or ignorance"), and I only wish to make technical
comments on <abbrsupport, so I've changed the Subject line.

IE lacked any support to <abbrup to and including IE 6, to the extent that
it does not even recognize the tags. After all, a browser could well conform
to HTML specs as regards to <abbr(and <acronym>) simply by parsing the
markup; no specific rendering or behavior is required. But IE just discarded
the tags, so you could not even use your own styling for the <abbrelement.

This changed in IE 7, which recognizes <abbrthough renders it as normal
text by default (which is quite sensible if you ask me, and even if you
don't). It shows the value of an eventual title="..." attribute as a
tooltip, as expected, since that's what it does to the attribute in all
elements. From the IE 7 perspective, <abbris much like <span>.

(Actually <abbrand <acronymare much like <awithout attributes, except
that <abbrand <acronymhave strange default renderings on some browsers
and might get even wilder if some implementor takes the "sample style sheet
for HTML 4"*) in the CSS 2.0 specification seriously. Since <ais much
shorter and avoids the twisty question "what's an acronym, BTW?", we could
use <a title="World Wide Web Consortium">WWW</aand use CSS for any styling
we like. I'm not entirely serious. :-) )

( *It has: ABBR, ACRONYM { font-variant: small-caps; letter-spacing:
0.1em }
which is a really bad joke.)

You can use
abbr { border-bottom: dotted 2px; }
if you want to have a simulated dotted underline on IE 7 as by default on
some other browsers.

--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/

Feb 19 '07 #7
On 18 Feb, 19:15, "cms-hispano.org" <miguelpi...@gmail.comwrote:
i'm building a site about extreme accessibility,
I suggest that you learn how to _do_ it first. That site's pretty bad.

Try reading the already existing excellent Joe Clark site.

Feb 19 '07 #8
On Feb 19, 6:15 am, "cms-hispano.org" <miguelpi...@gmail.comwrote:
i'm building a site about extreme accessibility, i.e.: how (and why)
to get sites to become fully accessible, *beyond* W3C Web
Accessibility Initiative guidelines. it's far from being completed (i
just started it off!), so i'd very much appreciate any comment on the
site/issue:www.accessibility.ws
I agree with what has already has been said, plus "here" is not a very
informative link name for a link in the middle of a block of text when
your tabing through the text.
Read the following:
http://dev.wave.webaim.org/Output.js...ontent&md=nils
I hope that helps.
--
Regards Chad. http://freewebdesign.cjb.cc

Feb 19 '07 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

64
by: Dave | last post by:
A friend of mine pointed out the other day that certain elements on my web site are too small. But in most of what I publish, fonts are at default size or smaller, and my images are easy to see. I...
12
by: Adrian | last post by:
Could someone please tell me how I can check out the correctness of a site's coding. I have brought about a website, checked it out with various browsers. It seemed to be ok. Then I come across a...
54
by: richard_quick_uk | last post by:
Hi, If anyone's got the time I'd really appreciate any feedback on the accessibility of this site: http://www.cata.co.uk/_index.a­sp
25
by: John Morgan | last post by:
Though I have designed and implemented a number of large reasonably well received web sites I do not consider myself a graphics designer I am now for the first time going to work with a ...
19
by: mehdi.louizi | last post by:
Hello, I'm beginning to create a web site but I'm facing a big problem for which I didn't find any solution!! I'm using the 1024*768 screen resolution, and when I change it to 800*600 the page is...
17
by: Cloy | last post by:
At one point, someone posted a really handy four-letter mnemonic for evaluating web sites. It was something like OSDI - something, Structure, something, Interface. Anyone happen to know what...
71
by: Murray R. Van Luyn | last post by:
Hi, Since I have made changes to my website it's been a complete flop. According to the logs, as soon as visitors have downloaded the index page they are off. I can't figure out why? ...
4
by: Brian McCullough | last post by:
Hello, I have a single Web Site Project (WSP, not Web Application Project/WAP). I don't have a WDP project with this, so I don't have a need for a solution file (.sln). I have noticed that my...
1
by: umeshpotdar | last post by:
what are the differences between Mobile Web Site and Desktop Web Site? which are the Accessibility can i give to Web Site for blind poeple? can I access Desktop Web Site in Mobile device or...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.