Ho un problema di validazione codice html che non riesco a risolvere
codice:
<P align=left>
<form style="margin: 0px;" action="" method="post">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<script language="JavaScript" type="text/JavaScript">
function LASE(Obj){
WXPLUS_JumtToURL('parent',Obj.options[Obj.selectedIndex].value);
}
</script>
<select name="SelectLanguage" onChange="LASE(this);" class="ComboSelLingua" >
<option value="../site/page.wplus?ID_COUNT=home&LN=3">Français</option>
<option value="../site/page.wplus?ID_COUNT=home&LN=2">English</option>
<option value="../site/page.wplus?ID_COUNT=home&LN=1" selected>Italiano</option>
<option value="../site/page.wplus?ID_COUNT=home&LN=6">Português</option>
<option value="../site/page.wplus?ID_COUNT=home&LN=5">Español</option>
<option value="../site/page.wplus?ID_COUNT=home&LN=4">Deutsch</option>
</select>
</td>
</tr>
</table>
</form>
</p>
Mi segnala come errore che il tag </p> non è chiuso correttamente
("end tag for element "P" which is not open").
Dovè l'inghippo?