This is for an assignment in school. All of our HTML has to be W3C validated. I'm still getting one error. On line 32 specifically. This is what it's saying:
"Line 32, Column 43: end tag for "select" which is not finished
<select name="choiceBox" size="7"></select>✉
Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>
Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on."
I don't see anything nested incorrectly. I've been hacking at the code for a while now with no solution. Anyone have any ideas?
<table border="0">
<tr>
<td valign="top">
<h3>Personal Information</h3>
<p>Name<br />
<input type="text" name="name" size="50" onclick="document.forms[0].name.value = '';" /></p>
<p>E-mail<br />
<input type="text" name="e_mail" size="50" onclick="document.forms[0].e_mail.value = '';" /></p>
</td>
</tr>
<tr>
<td valign="top">
<p>Are you 18 years of age or older?</p>
<p><input type="radio" name="preferences" />Yes</p>
<p><input type="radio" name="preferences" />No</p>
</td>
</tr>
<tr>
<td valign="top">
<p>Positions interested in:</p>
<select name="available" size="7" onchange="moveOver();">
<option>Server</option>
<option>Host</option>
<option>Food Runner</option>
<option>Line Cook</option>
<option>Manager</option>
<option>Busser</option>
<option>Event Coordinator</option>
</select>
<p>Your Choices:</p>
<select name="choiceBox" size="7"></select>
<p><input type="button" value="Remove" onclick="removeMe();" /></p>
</td>
</tr>
</table>