Angular First Program
Angular JS
Hello World Program in Angular JS:
<html ng-app><script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.8/angular.min.js"></script>
<body>
<label class="lblcolor">Your name: </label>
<input type="text" ng-model="name" placeholder="What's your name?"/>
<h2 class="hcolor">Hello Your Name {{name}}.</h2>
</body>
</html>
css file:
Comments
Post a Comment