E-mail List Archives
Number of posts in this thread: 4 (In chronological order)
From: Kynn Bartlett
Date: Jul 26, 2002 2:23PM
Subject: Sample Chapter from CSS in 24 Hours on ICDRI Site
No previous message | Next message → 
Hi, everyone,
A sample chapter from my new book, "Teach Yourself CSS in 24
Hours", is available exclusively on the ICDRI Web site.  The
chapter is "Hour 21: Accessibility and Internationalization";
it doesn't go into depth on either topic, but it does provide
new CSS developers with an introduction to each.  You can read
the online sample at:
      http://www.icdri.org/chapter21.html
--Kynn
-- 
Kynn Bartlett < = EMAIL ADDRESS REMOVED = >                 http://kynn.com
Chief Technologist, Idyll Mountain            http://idyllmtn.com
Next Book: Teach Yourself CSS in 24       http://cssin24hours.com
Kynn on Web Accessibility ->>          http://kynn.com/+sitepoint
----
To subscribe, unsubscribe, or view list archives, 
visit http://www.webaim.org/discussion/
From: Alice Anderson
Date: Jul 29, 2002 7:13AM
Subject: labels for form controls
← Previous message | Next message → 
All, Does anyone have ideas for a page with form controls
(http://polyglot.lss.wisc.edu/german/suggest.htm).
Is there a way to use the LABEL element without changing the current
appearance of the page.  The current page has its labels (not coded as
LABEL) above the corresponding form controls.
I would appreciate any suggestions.
Thanks,
Alice
-- 
Alice Anderson, Division of Information Technology
Communications, Organizational & Student Initiatives
Technology Access Program Coordinator
University of Wisconsin-Madison
1210 W. Dayton Street, Room 2173,
Madison, WI  53706
phone 608-262-2129, fax 608-262-4679
email:  = EMAIL ADDRESS REMOVED = 
----
To subscribe, unsubscribe, or view list archives, 
visit http://www.webaim.org/discussion/
From: John Foliot - bytown internet
Date: Jul 29, 2002 7:26AM
Subject: RE: labels for form controls
← Previous message | Next message → 
Alice:
<label for="name">Name: </label> <BR>
	<INPUT type=text size=15 maxlength=25 name="name" id="name">
<P><label for="email">E-mail Address: </label> <BR>
 	<INPUT type=text size=30 maxlength=45 name="email" id="email">
<P><label for="comments">Comments: </label> <BR>
	<TEXTAREA name="comments" cols=50 rows=8 wrap=physical
id="comments"></TEXTAREA>
> 
From: Karthiknarayanan Ramaswamy
Date: Jul 29, 2002 7:26AM
Subject: RE: labels for form controls
← Previous message | No next message
hi alice,
you can have text and form input controls associated with a label implicitly
or explicitly.
Please refer to http://www.w3.org/TR/REC-html40/interact/forms.html for
examples.
HTH,
Karthik
