<!DOCTYPE html>
<html>
<head>
<title>My First Program in AngularJS - Wikitechy</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script>
</head>
<body ng-app="">
Enter Text : <input ng-model="text">
<h2 ng-bind="text"></h2>
</body>
</html>