AngularJS is distributed as a JavaScript file, and can be added to a web page with a script tag: < script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js" > < /script > < !DOCTYPE html > < html > < script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js" > < /script > < body > < div ng-app= "" > < p > Name: < input type= "text" ng-model= "name" > < /p > < p ng-bind= "name" > < /p > < /div > < /body > < /html > Example explained: AngularJS starts automatically when the web page has loaded. The ng-app directive tells AngularJS that the <div> element is the "owner" of an AngularJS application. The ng-model directive binds the value of the input field to the application variable name . The ng-bind directive binds the inn...