Im getting started with Angular.js. I am trying the data binding that angular offers
With this code I expect that whatever I type in the dialogue box is rendered underneath in the browser. WHy isn't that happening here? What am I missing?
<!Doctype html>
<html ng-app>
<head>
<title>Simple App</title>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"> </script>
</head>
<body>
<input ng-model="name" type="text" placeholder="Your name">
<h1>Hello {{name}}</h1>
</body>
</html>
This is what Im seeing:

ng-appfix your problem? If it does you should state so clearly, because editing your answer to include it might create confusion, when it was the most obvious omission in your question originally.