HTML <label> Tag

<form name="myForm" action="https://www.PuStudy.Com/resources/html-forms-action.html">
	<label>First Name <input type="text" name="fName"></label>
	<button>Submit</button>
</form>

The above example demonstrates usage of the <label> element.

The <label> element represents a caption for a form control. The caption can be associated with a specific form control, either by putting the form control inside the label element itself (as the above example demonstrates), or by using the for attribute.