Skip to content

Instantly share code, notes, and snippets.

@sivaprasadreddy
Created September 4, 2014 12:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sivaprasadreddy/760a1d0e7fdb2b0c8967 to your computer and use it in GitHub Desktop.
Save sivaprasadreddy/760a1d0e7fdb2b0c8967 to your computer and use it in GitHub Desktop.
AngularJS HelloWorld
<html>
<head>
<title>Hello AngularJS</title>
<meta charset="UTF-8">
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
</head>
<body ng-app>
<p>Enter Name: <input type="text" ng-model="myname"> </p>
<p>Hello {{myname}}!!</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment