-
Notifications
You must be signed in to change notification settings - Fork 0
FAQ
Edric Chan edited this page Nov 3, 2016
·
6 revisions
Q. How do you get the sleek appearance?
A.
Site | Material Design Lite | Angular | Angular Material |
---|---|---|---|
Website | https://getmdl.io/started/index.html | https://angularjs.org | https://material.angularjs.org |
Q. How do you start a blog?
A. You can use Jekyll for this. Read here for more info.
Q. Why did you create the site?
A. I created the site to let you know more about me and what I am currently doing, along with my projects.
Q. Where can I code?
A. You can code at...
Site | Codeacademy | Codeschool | Khan Academy | Treehouse | Pluralsight | Udacity |
---|---|---|---|---|---|---|
Website | https://codeacademy.com | https://codeschool.com | https://khanacademy.org | https://teamtreehouse.com | https://pluralsight.com | https://www.udacity.com |
Notes | Free coding courses, although quizzes require a subscription | Some courses are free, but most require a subscription. (Monthly/Yearly) | Khanacademy has not many good things, although you can do the HOC | You can start a 7-day trial, then a credit card is required | Pluralsight has a trial, but subscription is monthly/yearly | Pluralsight has a trial, but subscription is monthly/yearly |
(Phew. That was a bunch to write...) |
Q. How do I import Angular and Angular Material?
A. Here it is:
<html ng-app="BlankApp">
<!--Replace BlankApp with your app name-->
<head>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/angular_material/1.1.1/angular-material.min.css">
<!-- Angular Material requires Angular.js Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular-animate.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular-aria.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular-messages.min.js"></script>
<!-- Angular Material Library -->
<script src="https://ajax.googleapis.com/ajax/libs/angular_material/1.1.1/angular-material.min.js"></script>
</head>
<body>
<!--Content goes here-->
</body>
<!--Script for app bootstrap-->
<script>
// Substitute BlankApp as your app name
angular.module('BlankApp', ['ngAnimate', 'ngAria', 'ngMaterial', 'ngMessages']);
// Note: You can put this in a javascript file (*.js), just remember to import it!
</script>
</html>
© AngularJS and AngularJS Material - Google 2018. All rights reserved.
- MIT
Thanks to all for helping me, including the coding sites such as CodeSchool and for all the tutorials online.
Made With Markdown