Html.Label:-

“Label” helper method is used to return “ <label>” element and it uses the string parameter to determine the rendered “text” and “for” attribute value. It is used to attach the information to other input element like text box. “for” attribute of the label element will have the ID of the associated input element.

Example:

View:@Html.Label(Model.UserName)

Render:

            
<label for="UserName">UserName</label>