Skip to content

Instantly share code, notes, and snippets.

@gujc71
Last active February 15, 2018 15:02
Show Gist options
  • Save gujc71/cd5e8209eff633817f503208646dac97 to your computer and use it in GitHub Desktop.
Save gujc71/cd5e8209eff633817f503208646dac97 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes">
<title>Board Sample</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<script>
var app = angular.module("myApp", []);
app.controller("myCtrl", function($scope) {
$scope.hello = "Hello World";
});
</script>
</head>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
{{ hello }}
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment