UNPKG

fruitstand

Version:
18 lines 500 B
<!doctype html> <html ng-app="firstApp"> <head> <title>First AngularJS App</title> </head> <body> <div ng-controller="FirstController"> <span>Name:</span> <input type="text" ng-model="first"> <input type="text" ng-model="last"> <button ng-click='updateMessage()'>Message</button> <hr> {{heading + message}} </div> <script src="http://code.angularjs.org/1.3.0/angular.min.js"></script> <script src="js/first.js"></script> </body> </html>