Sometimes you don't have space on the screen to put a label, or that label would interfere with the design. Or, you might need to put two labels on a single control. Screen readers will read the title on form controls. The title also appears as a tooltip when the mouse hovers over the control, so it can function like a hint for some users.
<form class="example" action="demo">
<table>
<th>Labrador Retriever</th>
<th>Spouse</th>
</tr>
<tr>
<th>W2 Gross</th>
<td><input size="20" title="Labrador Retriever
Black " type="text"></td>
<td><input size="20" title="Cocker Spaniel Black " type="text"></td>
</tr>
....
</table>
</
form>