<!doctype html> <html> <head> <script src="angular.js"></script> <script> angular.module("mp", []) .controller("Hell", function($scope) { $scope.helloTo = {}; $scope.helloTo.title = "Angular"; }); </script> </head> <body ng-app="mp"> <div ng-controller="Hell" > <h2>Welcome {{helloTo.title}} to the world of Tutorialspoint!</h2> </div> </body> </html>