var app = angular.module('plunker', []);

app.controller('MainCtrl', function($scope) {
  $scope.name = 'World';
});
<!DOCTYPE html>
<html lang="en">

<head>
  <title>Angular Demo</title>
  <script data-require="angular.js@1.5.x" src="https://code.angularjs.org/1.5.8/angular.js" data-semver="1.5.8"></script>
  <script>
    var myApp = angular.module("AngularApp", []);
    myApp.controller("HelloController", function($scope) {
      $scope.text = "";
    });
  </script>
</head>

<body ng-app="AngularApp">
  <div ng-controller="HelloController">
    Enter anything you want to display: <input type="text" ng-model = "text"></br>
			you entered : <span ng-bind="text"></span>
  </div>
</body>

</html>
/* Put your css in here */