Angular Home
home
Run
screen_rotation
fullscreen
cloud_download
<!DOCTYPE html> <html lang="en"> <head> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.3/angular.min.js"></script> </head> <body ng-app="firstapp"> <div ng-controller="testController" > <h1>Learn with Tutorialsplane, Try {{hello.title}}. It's easy!</h111> </div> <script> angular.module("firstapp", []) .controller("testController", function($scope) { $scope.hello = {}; $scope.hello.title = "AngularJS with example and demo"; } ); </script> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.3/angular.min.js"></script> </head> <body ng-app="firstapp"> <div ng-controller="testController" > <h1>Learn with Tutorialsplane, Try {{hello.title}}. It's easy!</h111> </div> <script> angular.module("firstapp", []) .controller("testController", function($scope) { $scope.hello = {}; $scope.hello.title = "AngularJS with example and demo"; } ); </script> </body> </html>
Copyrights@tutorialsplane.com