Hi Friends...
Write Your Name inside Textbox:
Name :
Name :
Hello {{name}}
<!DOCTYPE html>
<html>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>
<div ng-app="" style="border: 2px solid #FF6600; width: 350px; text-align:center;">
<p>Write Your Name inside Textbox:</p>
<p>Name :
<input type="text" ng-model="name" placeholder="Enter name here"></p>
<h1>Hello {{name}}</h1>
</div>
</body>
</html>