Re: [VE][73] Add Subject Here

2014-09-22 16:43, Luca Leoni wrote:

> I don't understand why the validator give me error for <form> and
> <input> tag.
>
> Thanks
> Bye
>
> Validating http://www.leoniaudiovideo.com/
> Error [73]: "end tag for X which is not finished"

Since the page declares HTML 4.01 Strict, a <form> element can have 
block-level children only. The simplest fix in this case is to wrap the 
<input> element in a <div> container:

<form ...><div><input ...></div></form>

Yucca

Received on Tuesday, 23 September 2014 07:01:59 UTC