1.1. Required software#

We will be using the following applications in the class. If you don’t already have them on your computer, please download and install the following:

Visual Studio Code#

../../../_images/vs-code.png

Visual Studio Code is the code editor that we will use to write the HTML and CSS for our websites.

Firefox#

../../../_images/firefox-logo.png

Firefox has the best CSS dev tools, so we will use it as our main browser to debug our websites.

Google Chrome#

../../../_images/chrome-logo.png

Chrome has some dev tool features that are better than Firefox’s, so it’s good to have both browsers installed. It’s helpful to test sites in multiple browsers.

Tip

Avoid using Safari for now. Safari is breaking from some web standards. If you prefer to have Safari as your default browser, you can set VS Code to open web pages in Firefox.

Git#

../../../_images/git-logo.png

Git is a version control system that we will use to manage our code. It’s a good idea to use version control for any code you write, even if you’re the only one working on it. It’s especially important when you’re working with a team.

Here’s a 7 minute video showing how to install and configure Git

Note

Notes from the video:

For info on other installs see Getting Started - Installing Git

Make sure to run these commands in terminal

git config --global user.name “your name”

git config --global user.email email-address

git config --global init.defaultBranch main