DEV 7.2 Provide labels for every form element, place correctly, explicitly associate
Compare with WAI & NDA checkpoints
NDA checkpoints: 2.16, 2.17 (P2)
NDA checkpoints: 2.16, 2.17 (P2)
Examples



Use of the label tag:
<label for="name">Name:</label>
<input type="text" id="name" ... >
<input type="radio" id="male" ...>
<label for="male">Male</label>
There is another form of usage for the label tag but the above is the most flexible and widely supported.
Use of the title attribute:
<input type="text" id="name"
title="full name" ... >
