Skip to content

Instantly share code, notes, and snippets.

@gaboesquivel
Last active December 23, 2015 09:19
Show Gist options
  • Save gaboesquivel/6613596 to your computer and use it in GitHub Desktop.
Save gaboesquivel/6613596 to your computer and use it in GitHub Desktop.
angulardemo1
<!doctype html>
<html ng-app>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js"></script>
</head>
<body>
<div>
<label>Name:</label>
<input type="text" ng-model="yourName" placeholder="Enter a name here">
<hr>
<h1>Hello {{yourName}}!</h1>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment