<!DOCTYPE html>
<html ng-app="data-binding-example">
<head lang="en">
<meta charset="utf-8">
<title>Super Simple Data-Binding Plunker</title>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular.min.js"></script>
<link rel="stylesheet" href="style.css">
<script>
document.write('<base href="' + document.location + '" />');
</script>
<script src="app.js"></script>
</head>
<body>
<h1>Welcome</h1>
<div>
Binding the value in the text field to the model name.
<br/><br/>
<input type="text" ng-model="name" placeholder="Enter a name here" />
<span ng-show="name"><h4>Hello {{name}}</h4></span>
</div>
</body>
</html>
var app = angular.module('data-binding-example', []);
/* CSS goes here */