Examples of form inputs marked up with the <label> tag
Form element looks like
Coded like:
<label for="txtFirstName">First Name:</label><br />
<input class="input" type="text" title="Enter your first name" maxlength="" size="" name="txtFirstName" id="txtFirstName" value="">
Age:
Age:<br />
<input class="input" type="radio" title="Choose from one of the options" name="radAge" id="radAge4_0" value="Under30"><label for="radAge4_0"> Under 30</label><br>
<input class="input" type="radio" title="Choose from one of the options" name="radAge" id="radAge4_1" value="Over30"><label for="radAge4_1"> Over 30</label><br>
What colours do you like:
What colours do you like:<br />
<input class="input" type="checkbox" title="Select what colours you like" name="chk0" id="chk0_0" value="red"><label for="chk0_0"> red</label><br>
<input class="input" type="checkbox" title="Select what colours you like" name="chk1" id="chk1_1" value="green"><label for="chk1_1"> green</label><br>
<input class="input" type="checkbox" title="Select what colours you like" name="chk2" id="chk2_2" value="blue"><label for="chk2_2"> blue</label><br>
<input class="input" type="checkbox" title="Select what colours you like" name="chk3" id="chk3_3" value="purple"><label for="chk3_3"> purple</label><br>
<label for="txtLifeStory">Your life story:</label><br />
<textarea title="Write your life story here" name="txtLifeStory" id="txtLifeStory" rows="5" cols="25" class="input"></textarea>