Simple First Hello World in AngularJS
<!doctype html>
<html lang="en" ng-app="">
<head>
<meta charset="UTF-8">
<title>Angular Master</title>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
</head>
<body>
<input type="text" ng-model="myname">
<h3>Welcome {{myname}}</h3>
</body>
</html>
No comments:
Post a Comment