AmgularJS hello world application

<html>
<title>hello world application</title>
<head>
<!–Load framework–>
<script src=”http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js”></script>
</head>
<body>
<h1>Hello World Program</h1>
<div ng-app=””>
<span>Write here something: <input type=”text” ng-model=”name”></span>
<p>Hello <span ng-bind=”name”></span></p>
</div>
</body>
</html>