Below is a simple HTML code which just creates a simple textbox with 'CustomerName' as name.
Html.TextBox("CustomerName")
Below is Html.TextBoxFor code which creates HTML textbox using the property name ‘CustomerName' from object 'm'.
Html.TextBoxFor(m => m.CustomerName)