Created
September 23, 2012 04:30
-
-
Save mnafricano/3768877 to your computer and use it in GitHub Desktop.
Model - Angular.js
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
<html> | |
<head> | |
<title> Marcello Africano </title> | |
<meta charset="utf-8" /> | |
</head> | |
<body> | |
<div ng-app> | |
<div> | |
<label> First Name: </label> | |
<input type="text" ng-model="firstName" placeholder="Enter a first name here"> | |
<label> Last Name: </label> | |
<input type="text" ng-model="lastName" placeholder="Enter a last name here"> | |
<hr> | |
<h1> Hello {{firstName}} {{lastName}}! </h1> | |
</div> | |
</div> | |
</body> | |
</html> |
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
body { | |
margin: 15px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment