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">&nbsp;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">&nbsp;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">&nbsp;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">&nbsp;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">&nbsp;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">&nbsp;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>


<label for="ddlTown">Favourite Town:</label><br />
<select title="Please choose your favourite town" name="ddlTown" id="ddlTown">
<option value="">Please Select ... </option>
<option value="Swindon">Swindon</option>
<option value="London">London</option>
<option value="Burkino Faso">Burkino Faso</option>
</select>