In MVC HTML Helpers is a class which are used in views to render/display HTML controls like links, TextBox, TextArea, etc.
HTML Helper Example in MVC
@Html.ActionLink("Create New", "create")
The above example generates an HTML link something like <a href="/create">Create New</a>