Answers for "html input label in label"

15

html input label

<!-- By reference -->
<label for="first_name">First Name</label>
<input type="text" id="first_name" name="first_name">

<!-- By wrapping -->
<label>First Name
  <input type="text" name="first_name">
</label>
Posted by: Guest on May-31-2020
26

how to use the label tag in html

<label for="id_of_what_you're_labeling"></label>

<!-- for example-->
<label for="username"></label>
<input type="text" id="username">
Posted by: Guest on March-08-2020

Browse Popular Code Answers by Language