Skip to content

Instantly share code, notes, and snippets.

@mnafricano
Created September 23, 2012 04:30
Show Gist options
  • Save mnafricano/3768877 to your computer and use it in GitHub Desktop.
Save mnafricano/3768877 to your computer and use it in GitHub Desktop.
Model - Angular.js
<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>
body {
margin: 15px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment