I rarely use forms. Now I need a response form and I am getting an error message that "In HTML 4.01 Strict the tag <form> cannot contain a tag <input>. What is the alternative?
Fotiman
3:05 pm on Apr 2, 2010 (gmt 0)
The <form> element [w3.org] cannot directly contain <input> as a child. Form can only include block or script elements. So typically the best way to create your form is to include an inner <div> element. For example: