Hi there, I am new to angular js and I'm attempting to integrate a simple html file into my page.
Below is the code I am using:
<!DOCTYPE html>
<html ng-app="">
<head>
</head>
<body ng-controller="userController">
<div class="container">
<div ng-include src="'about.html'"></div>
</div>
<script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script>
</body>
</html>
and about.html
<table class="table table-striped">
<thead><tr>
<th>Edit</th>
<th>First Name</th>
<th>Last Name</th>
</tr></thead>
<tbody><tr>
<td>
Edit
</td>
<td>ss</td>
<td>dd</td>
</tr></tbody>
</table>
However, I'm encountering an issue where the 'about.html' page is not being included.
Can anyone spot what might be wrong with this code? (Apologies for my poor English)
Thank you in advance.