How To Insert HTML Content Inside View In AngularJS
Here we explain how to insert HTML content inside View in AngularJS
We explain with the help of ngSanitize.
First of all, add angular-sanitize.min js to your solution
Inside module dependecies, include ngSanitize as shown below image.
Assign the HTML content to the Model Object wrt the $scope inside Controller.

Here we use ng-bind-html to show the HTML content on AngularJS.
Just write the model Object attached with &scope inside ng-bind-html.

By this way we can Show HTML Content Inside View In AngularJS.