Can someone explain me what it means when they say:
“HTML Helpers enables to encapsulate the rendering of HTML”
Does it mean it will restrict access to the HTML attributes of an object? What if I am using CSS, jquery, Javascript, will it display my JS/jquery and CSS in page source?
HTML helpers are bits of code that will render out the HTML, instead of you writing out the HTML for each and every piece of data directly in the view.
They encapsulate it – meaning they take care of what HTML is output.