With AngularJS, you can include HTML content, using the ng-include directive, on the client-side.
Client Side Includes
There are many ways to use JavaScript to include HTML in HTML.
The most common way, is to use an http request (AJAX) to fetch data from a server, and then write the data to the innerHTML of an HTML element.
Example
<body>
<div class="container">
<div ng-include="'myUsers_List.htm'"></div>
<div ng-include="'myUsers_Form.htm'"></div>
</div>
</body>