The framework we will be using most in this class is Bootstrap. As described on their site, "Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile first projects on the web." This means you can download or link it and use it to quickly build out sites with pre-made components that will look great on any platform. To learn more about frameworks in general, you can go here.
Git is a program on your computer that you access through the "command line"
Github.com is a website that manages the files you give it
cd [file]
cd ..
ls
ls -al
git status
THE BIG THREE:
git add [file] or .
git commit -m "my commit message"
git push
git clone [repo]
git pull
git checkout -b "name_of_branch"
git merge "name_of_branch"