Last active
March 28, 2016 16:22
-
-
Save leandroh/105d397e758856ea728c to your computer and use it in GitHub Desktop.
Angular controller
This file contains 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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>AngularJS</title> | |
</head> | |
<body ng-app="app"> | |
<div class="container" ng-controller="miCtrl"> | |
<h1>{{mensaje}}</h1> | |
</div> | |
<script src="https://code.angularjs.org/1.5.3/angular.min.js"></script> | |
<script src="app.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment