I have this with many options on it, i have nearly 30, i would love to know if another way can be used to make him more readable ?
Thank you.
<p>
<label for="subject">subject :</label>
<select id="subject" name="subject">
<option value=""></option>
<option value=""></option>
<option value=""></option>
<option value=""></option>
<option value=""></option>
<option value=""></option>
<option value=""></option>
<option value=""></option>
<option value=""></option>
<option value=""></option>
</select>
</p>
According to the HTML5, the closing tag for the element is optional if it’s followed by another option tag, or if it’s the last element of the element.
So you can write it like this to be more readable
As far as I know this is also true for HTML 4.