Skip to content

Instantly share code, notes, and snippets.

@hgbrown
Created August 3, 2013 07:34
Show Gist options
  • Save hgbrown/6145603 to your computer and use it in GitHub Desktop.
Save hgbrown/6145603 to your computer and use it in GitHub Desktop.
HTML:AngularJS Hello World
<!DOCTYPE html>
<html>
<head>
<title>AngularJS: Hello World</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.1/angular.min.js"></script>
</head>
<body>
<div ng-app>
<input type="text" ng-model="name" placeholder="Enter your name here..." />
<span ng-show="name">Hello, {{name}}</span>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment