Home
Tutorials
Microsoft Technologies Tutorials
Java Programming Tutorials
Web Designing Tutorials
Script Programming Tutorials
Database Programming Tutorials
Mobile Technologies Tutorials
Other Programming Tutorials
Examples
Articles
Tools
News
AngularJS Examples
Keywords : Angularjs hello world example with demo, Angularjs simple hello world example, Simple example in angularjs with live demo,
Example
<!DOCTYPE HTML> <html> <head> <title>AngularJS Tutorial and Hello World Example</title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.9/angular.min.js"></script> </head> <body> <div ng-app="" > <label>Name:</label> <input type="text" ng-model="txtname" placeholder="Please enter name"> <hr> <h1>Hello {{txtname}}!</h1> </div> </body> </html>
Click Here to See Result
Result
Next