My second 25 minutes with AngularJS

The Basics of AngularJS, with the non-minified CDN as an external resource, so that we can step through the code with Firebug.

by Shaun Luttin

HTML

<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.js"></script>
<body ng-app>
    <div>
        <label>Name:</label>
        <input type="text" ng-model="yourName" placeholder="Enter a name here">
         <h1>Hello {{yourName}}!</h1>

    </div>
</body>