[WSG] Conact Form!

2008-05-15 Thread james

Hi All;


On my contact page i have used this code, however it comes back as not 
being valid XHTML 1.0 Transitional, am i missing something silly here?

form
label for=userName/label input type=text id=user value= 
/br /
label for=companyCompany:/label input type=text id=company 
value= /br /
label for=emailaddressEmail Address:/label input type=text 
id=emailaddress value= /br /

label for=commentsComments:/label
textarea name=comments
/textarea
br /
input type=submit id=submitbutton value=Submit /
/form

Thanks James





***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



RE: [WSG] Conact Form!

2008-05-15 Thread Darren Lovelock
Theres no id on the textarea :)

Darren Lovelock
Munky Online Web Design
http://www.munkyonline.co.uk
T: +44 (0)20-8816-8893
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of james
Sent: 15 May 2008 16:32
To: wsg@webstandardsgroup.org
Subject: [WSG] Conact Form!

Hi All;

 On my contact page i have used this code, however it comes back as not 
 being valid XHTML 1.0 Transitional, am i missing something silly here?
 form
 label for=userName/label input type=text id=user value= 
 /br /
 label for=companyCompany:/label input type=text id=company 
 value= /br /
 label for=emailaddressEmail Address:/label input type=text 
 id=emailaddress value= /br /
 label for=commentsComments:/label textarea name=comments 
 /textarea br / input type=submit id=submitbutton 
 value=Submit / /form

 Thanks James




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



Re: [WSG] Conact Form!

2008-05-15 Thread Darren West
No action attribute on the form?


2008/5/15 james [EMAIL PROTECTED]:

 Hi All;


 On my contact page i have used this code, however it comes back as not
 being valid XHTML 1.0 Transitional, am i missing something silly here?
 form
 label for=userName/label input type=text id=user value= /br
 /
 label for=companyCompany:/label input type=text id=company
 value= /br /
 label for=emailaddressEmail Address:/label input type=text
 id=emailaddress value= /br /
 label for=commentsComments:/label
 textarea name=comments
 /textarea
 br /
 input type=submit id=submitbutton value=Submit /
 /form

 Thanks James




 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 ***




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***

Re: [WSG] Conact Form!

2008-05-15 Thread David Owens
You need a block level element inside the form element. A fieldset would
work nicely.

2008/5/15 james [EMAIL PROTECTED]:

 Hi All;


 On my contact page i have used this code, however it comes back as not
 being valid XHTML 1.0 Transitional, am i missing something silly here?
 form
 label for=userName/label input type=text id=user value= /br
 /
 label for=companyCompany:/label input type=text id=company
 value= /br /
 label for=emailaddressEmail Address:/label input type=text
 id=emailaddress value= /br /
 label for=commentsComments:/label
 textarea name=comments
 /textarea
 br /
 input type=submit id=submitbutton value=Submit /
 /form

 Thanks James




 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 ***




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***

Re: [WSG] Conact Form!

2008-05-15 Thread james

Fixed it now thanks

David Owens wrote:
You need a block level element inside the form element. A fieldset 
would work nicely.


2008/5/15 james [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]:

Hi All;


On my contact page i have used this code, however it comes
back as not being valid XHTML 1.0 Transitional, am i missing
something silly here?
form
label for=userName/label input type=text id=user
value= /br /
label for=companyCompany:/label input type=text
id=company value= /br /
label for=emailaddressEmail Address:/label input
type=text id=emailaddress value= /br /
label for=commentsComments:/label
textarea name=comments
/textarea
br /
input type=submit id=submitbutton value=Submit /
/form

Thanks James




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]
***



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***


No virus found in this incoming message.
Checked by AVG. 
Version: 7.5.524 / Virus Database: 269.23.16/1430 - Release Date: 13/05/2008 07:31
  




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***



Re: [WSG] Conact Form!

2008-05-15 Thread Matijs
James,

Also, might want to consider getting rid of those ugly br/'s...

You could try:

label for=namespanName/spaninput type=text id=name//label

Display the label and the span as a block and float the span and the input
to the left, put a width on the span and you should be sorted.

Greetings,

Matijs

On Thu, May 15, 2008 at 6:44 PM, james [EMAIL PROTECTED] wrote:

 Fixed it now thanks

 David Owens wrote:

 You need a block level element inside the form element. A fieldset would
 work nicely.

 2008/5/15 james [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]:

Hi All;


On my contact page i have used this code, however it comes
back as not being valid XHTML 1.0 Transitional, am i missing
something silly here?
form
label for=userName/label input type=text id=user
value= /br /
label for=companyCompany:/label input type=text
id=company value= /br /
label for=emailaddressEmail Address:/label input
type=text id=emailaddress value= /br /
label for=commentsComments:/label
textarea name=comments
/textarea
br /
input type=submit id=submitbutton value=Submit /
/form

Thanks James




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]
***



 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 ***
 

 No virus found in this incoming message.
 Checked by AVG. Version: 7.5.524 / Virus Database: 269.23.16/1430 -
 Release Date: 13/05/2008 07:31





 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: [EMAIL PROTECTED]
 ***




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
***