Day 28: Labeling form elements (diveintomark)

Day 28: Labeling form elements. IIRC (and I just read the spec a couple days ago) instead of Mark's example of:

<label for="newcommentauthor">Name</label>
<BR>
<INPUT TYPE=TEXT id="newcommentauthor" NAME="newcommentauthor" SIZE=40>

You should be able to write:

<label>Name<br>
<input type=text name="newcommentauthor" size=40></label>

Whether or not it actually works in the various accessible user-agents, I don't know.