0
<label for="e-mail">Your e-mail address: </label>
what does attribute "for" does here.
2 Réponses
+ 2
If you create an input box like this:
<input type="text" name="e-mail">
It ties up the label and the input box, so when you click on the label this input box will be active.
0
thank you