Page 146 presents the following section of code
Code:
<form action = http://www.example.com/search.aspx> method = "get" name = "frmSearch>"
Search:
<input type = "text" name = "txtsearch" value = "search for" size="20" maxlength = "64" />
<input type = "submit" value = "submit" />
</form>
When i try to validate this code i am told that the form element cannot have inline children. i am told that if i put the input element into a p element then it will be acceptable.
I am just a beginner and suspect i am doing something wrong here.