Skip to content

Instantly share code, notes, and snippets.

@sgen
Created April 1, 2016 19:06
Show Gist options
  • Save sgen/fbea67113e0d3e336887e218c0b27112 to your computer and use it in GitHub Desktop.
Save sgen/fbea67113e0d3e336887e218c0b27112 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/node_modules/angular-material/angular-material.min.css" type="text/css" />
</head>
<body ng-app="MyApp">
<script href="/node_modules/angular/angular.min.js"></script>
<script href="/node_modules/angular-animate/angular-animate.js"></script>
<script href="/node_modules/angular-aria/angular-aria.min.js"></script>
<script href="/node_modules/angular-material/angular-material.min.js"></script>
<script>
angular.module('MyApp', ['ngMaterial'])
.run(function() {
console.log('MyApp: loaded');
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment