Answers for "what is for attribute in label tag"

1

html label tag

<!-- First Way -->
<label for="username">Username</label>
<!-- You can now assign id="username" so when you click on label element, it will go to the element. -->
<input type="text" id="username" />
<!-- Second Way -->
<label>
  Password
  <input type="text" />
</label>
Posted by: Guest on December-15-2021

Browse Popular Code Answers by Language