<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>AngularJs two-way data binding example</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.min.js"></script>
<script>
var app = angular.module('app', []);
app.controller('appCtrl', ["$scope", function($scope) {
$scope.name = 'Hello, 2 way binding !';
}]);
</script>
</head>
<body ng-app="app" ng-controller="appCtrl">
<p><h3>AngularJs two-way data binding example</h3></p>
<p>Enter in TextBox : <input type="text" ng-model="name"></p>
<p><h4>{{name}}</h4></p>
</body>
</html>
/* Put your css in here */