Skip to content

Instantly share code, notes, and snippets.

@NizarOukhchi
Last active December 6, 2015 22:46
Show Gist options
  • Save NizarOukhchi/96d47102a4246149b9a7 to your computer and use it in GitHub Desktop.
Save NizarOukhchi/96d47102a4246149b9a7 to your computer and use it in GitHub Desktop.
AngularJS introduction: step 1
angular.module('myApp', [])
.controller('appCtrl', function($scope){
});
<html>
<head>
<title>AngularJS Introduction</title>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
</head>
<body ng-app="myApp">
</body>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.5/angular.js"></script>
<script type="text/javascript" src="app.js"></script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment