How to link AngularJS Script FILE with HTML There are 2 WAYS to link AngularJS script files with HTML. (1)First way is to DOWNLOAD the ANgularJS to machine and then include script from the local machine url like given below < script src="script/angular.js" type="text/javascript" >< /script>
(2)And the 2nd is to include script from CDN as given below < script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js">< /script>