Online: 22848
Label tag is used to add the label to the input tags or check box, textarea, etc
<h2 style="color:green"><i>Label tag is used to add labels in form controls, input tags. </i></h2>
<label for="email"> EMAIL-ID:</label><br />
<input type="email" name="emailid" size="30"><br /><br/>
<label for="Password">PASSWORD</label><br />
<input type="password" name="password" size="40" maxlength="10" placeholder="Enter Password">
output