<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.min.js"></script>
<div ng-controller="myController">
Name : <input type="text" ng-model="name" /></br>
Name : <input type="text" ng-model="email" /></br>
var myApp = angular.module("myApp", []);
myApp.controller("myController", function($scope) {
$scope.email = "tanib@yopemail.com";