Skip to content

Instantly share code, notes, and snippets.

@kzkamiya
Last active August 29, 2015 14:10
Show Gist options
  • Save kzkamiya/1f8ab32fa0809fd1e9df to your computer and use it in GitHub Desktop.
Save kzkamiya/1f8ab32fa0809fd1e9df to your computer and use it in GitHub Desktop.
Angular HelloWorld.
<!DOCTYPE html>
<html>
<!--
https://bl.ocks.org/kzkamiya/raw/1f8ab32fa0809fd1e9df/
-->
<head>
<meta chraset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.5/angular.min.js"></script>
<div ng-app="">
<label>Name:</label><input ng-model="yourName" type="text" /><br />
Hello {{yourName}}!
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment