| 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> | | |