AngularJS Primer Ejemplo
HTML
<link rel="stylesheet" href="http://angularjs.org/css/bootstrap.min.css">
<link rel="stylesheet" href="http://angularjs.org/css/font-awesome.css">
<div class="well" ng-app>
<div>
<label>Nombre:</label>
<input type="text" ng-model="yourName" placeholder="Enter a name here">
<hr>
<h1>Hello {{yourName}}!</h1>
</div>
</div>