<body ng-app="myapp">
<div ng-controller="HelloController" >
<h2>Hello {{name}} !</h2>
<input type="text" ng-model="name" />
</div>
angular.module("myapp", [])
.controller("HelloController", function($scope) {
$scope.name = "Jane"
} );
This Pen doesn't use any external CSS resources.