# Resources

This page will be updated with resources as the class progresses.

# Self Help

If you can describe your problem in words, you're already halfway there.

# Getting started

For a good general overview:

# Basic Git

# What to do when you're ready save your work and update your remote Github Repo:

#0. always check the status of your work in between EVERY step.
git status
# 1. Add all your work to stage it.
git add .
# 2. Commit your work.
git commit -m"a great message about what you did"
# 3. Push to your Github (it will automatically update your website too!)
git push origin master

# HTML

HTML stands for Hypertext Markup Language. It's used to structure a webpage and its content. HTML is not a programming language, but a markup language.

# CSS

# JavaScript

# Webfonts

# Debugging

# Online tools

For isolating, testing, and iterating on pieces of code:

# General

# Lynda.com: HTML, CSS & JavaScript Essential Training

Recommended:

# Philosphy of Code

# Daily/Weekly Design & Code Email Newsletters


...and more to come!

Last Updated: 4/17/2020, 7:56:09 PM