Edit This Code:
<!DOCTYPE html>
<html>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>  
<body ng-app="">

<p>Everything you write in the input field will also be the content of the heading below:</p>

<input ng-model="myInput">

<p>The content of the input field is;</p>
<h1>{{myInput}}</h1>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy