HTML Label
The HTML Label Element is used to attach a label to a form input element, can be used to describe the elements to the user.
Example
<form action="action.php" method="post"> <label>Name:</label> <input type="text" name="name"> <input type="submit" value="Submit"> </form>