<!doctype html>
<html>
<title>Example Hello World</title>
<body ng-app ng-init="name = 'World'">
Say hello to: <input type="text" ng-model="name"/>
<h1>Hello, {{ name }}</h1>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/angular.js"></script>
</body>
</html>