Skip to content

Instantly share code, notes, and snippets.

@albertywu
Created March 7, 2014 05:34
Show Gist options
  • Select an option

  • Save albertywu/9405794 to your computer and use it in GitHub Desktop.

Select an option

Save albertywu/9405794 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<script src="http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.1/angular.min.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body ng-app="myApp">
<label name="name">Enter your name</label>
<input type="text" name="name" ng-model="name" />
<div>{{ name }}</div>
</body>
</html>
var app = angular.module('myApp', []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment