What is Label ..?
A <label> element is used to associate text label for <input>, <button><select> and many other elements.
The <label> is used to tell the user that value should be entered in the associated input field.
A <label> element is used to associate text label for <input>, <button><select> and many other elements.
The <label> is used to tell the user that value should be entered in the associated input field.
Syntax : <label for="uname"> username :</label>
<input type="text" id="uname">
Example :
0 Comments