ch02-01-module-example.html 292 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 <!DOCTYPE html> <html ng-app="notesApp"> <head> <title>Hello AngularJS</title> <script src="../../tp/angular.js"></script> </head> <body> Hello {{1 + 1}}nd time AngularJS <script type="text/javascript"> angular.module('notesApp', []); </script> </body> </html>