Skip to content

Instantly share code, notes, and snippets.

@superchris
Last active December 23, 2015 00:49
Show Gist options
  • Save superchris/6556730 to your computer and use it in GitHub Desktop.
Save superchris/6556730 to your computer and use it in GitHub Desktop.
CampNG Lab 1 Start
<!DOCTYPE html>
<html ng-app>
<head>
<meta name="description" content="Camp NG Example 2" />
<script src="http://code.jquery.com/jquery.min.js"></script>
<link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap-responsive.css" rel="stylesheet" type="text/css" />
<script src="http://getbootstrap.com/2.3.2/assets/js/bootstrap.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.12/angular.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body ng-controller="GreeterCtrl">
{{ greetee }}
</body>
</html>
function GreeterCtrl($scope) {
$scope.greetee = "Hi There CampNG!";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment