Google News
logo
AngularJS - Interview Questions
About ng-include directive.
We can embed HTML pages within a HTML page using ng-include directive.

<div ng-app = "" ng-controller = "MyController">
   <div ng-include = "'sample.html'"></div>
   <div ng-include = "'smple_2.html'"></div>
</div>
Advertisement