[WSG] re: Another site review

2004-11-04 Thread Bennie Shepherd
is this a language declaration? html lang=en xml:lang=en 
xmlns=http://www.w3.org/1999/xhtml;
and also not sure what the lables are for the form pages.

 I would like to get comments on my site.
It looks fine in winXp ie and firefox, the code is all valid and
accessible (though it could use a language declaration)  on most of
the pages.  The mailing list page which needs to be set up with labels
at the least and so does the search page, etcd.  - so it's the form
pages that aren't accessible.
--
Get Firefox Browser
http://www.spreadfirefox.com/?q=affiliatesamp;id=6908amp;t=58
Bennie's MIDI Page
http://bennieshepherd.com/
Athens, Georgia, Relay For Life
http://www.athensrelay.net/
Montrose, Colorado, Relay For Life
http://montroserelay.com/
Grand Junction, Colorado, Relay For Life
http://grandjunctionrelay.org
LZ Friendly Veterans Org
http://lzfriendly.org
**
The discussion list for  http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**


Re: [WSG] re: Another site review

2004-11-04 Thread Susan R. Grossman
 is this a language declaration? html lang=en xml:lang=en
 xmlns=http://www.w3.org/1999/xhtml;

Yes -

 and also not sure what the lables are for the form pages.
 
Labels are an accessibility feature.  The WSG has an example of an
accessible form at
http://webstandardsgroup.org/resources/documents/doc_5_accessform.html

Labels are what associates the form field to it's descriptive text for
users on readers   for the handicapped.   They are associated to th
id.   Here's a dumbed down example (without your size
containing/layout  divs) of one of your forms

fieldset
  legendTo Join Our Mailing List Enter your name and email address
below:/legend
  plabel for=enameName:/label  br /   
  input name=ename id=ename type=text class=window size=40
maxlength=100 /
   /p
   plabel for=emailaddressdEmail:/label  br /
   input id=emailaddressd type=text class=window size=40
maxlength=100 //p
pinput type=radio name=action  id=subscribe value=join
checked=checked/
label for=subscribeSubscribenbsp;/label
input type=radio  id=unsubscribe name=action value=leave /
label for=unsubscribeUnsubscribenbsp;/label
/p
  /fieldset


The fieldset associates all the fields for the amiling list with a
legend for the group of form fields.

Hope this helps

-- 
Susan R. Grossman
[EMAIL PROTECTED]
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



Re: [WSG] re: Another site review

2004-11-04 Thread Susan R. Grossman
 is this a language declaration? html lang=en xml:lang=en
 xmlns=http://www.w3.org/1999/xhtml;

Yes -

 and also not sure what the lables are for the form pages.
 

Labels are an accessibility feature.  The WSG has an example of an
accessible form at
http://webstandardsgroup.org/resources/documents/doc_5_accessform.html

Labels are what associates the form field to it's descriptive text for
users on readers   for the handicapped.   They are associated to th
id.   Here's a dumbed down example (without your size
containing/layout  divs) of one of your forms

fieldset
  legendTo Join Our Mailing List Enter your name and email address
below:/legend
  plabel for=enameName:/label  br /   
  input name=ename id=ename type=text class=window size=40
maxlength=100 /
   /p
   plabel for=emailaddressdEmail:/label  br /
   input id=emailaddressd type=text class=window size=40
maxlength=100 //p
pinput type=radio name=action  id=subscribe value=join
checked=checked/
label for=subscribeSubscribenbsp;/label
input type=radio  id=unsubscribe name=action value=leave /
label for=unsubscribeUnsubscribenbsp;/label
/p
  /fieldset


The fieldset associates all the fields for the amiling list with a
legend for the group of form fields.

Hope this helps

-- 
Susan R. Grossman
[EMAIL PROTECTED]
**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**