I'm having a problem validating the <form> tag for my poll on my website. I've managed to re-write the html for the rest of the poll to validate xhtml tansitional, but not the <form> tag.
Can anyone offer any suggestions to get this last error ironed out please? Thanks for you suggestions!
as the validator is saying, you're not allowed to have the form element there. form is a block-level element, and can't be contained within a paragraph tag. move it outside of the paragraph, and you'll be fine. (move the closing paragraph tag in line 196 to the end of line 146)
Bookmarks