Created
January 27, 2017 11:13
-
-
Save sawo/667bbbd2f52f9e499196f3108097faf8 to your computer and use it in GitHub Desktop.
Angular 1 hello world application
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html ng-app> | |
<head> | |
<title>My Angular App</title> | |
<script src=“https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js”></script> | |
</head> | |
<body> | |
<h1 id=“title”>Hello {{name}}!</h1> | |
<input type=“text” placeholder=“What is your name?” data-ng-model=“name” /> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment