Skip to content

Web Development Tools

Learning Objectives
  1. Compare popular web browsers by browser market share
  2. List essential tools for frontend web development and describe their purpose
  3. Demonstrate how to install and configure software for a web development environment

Get ready for this course. Install / create accounts:

  1. Slack - communication
  2. Command line - basic computing
  3. Sites folder - where you’ll keep all your projects for the class
  4. Visual Editor - design
  5. Web Browsers - to test your web pages
  6. Code Editors - to build
  7. Version Control - to access class demos, manage code versions, and turn in assignments

  • Class communication will happen via Slack.
  • 👉 Download the desktop and mobile app and enable notifications.
  • Watch for an invitation to join the class Slack.

  • The command line allows you to control your computer via a text interface.
  • 👉 Complete the command line crash course before proceeding.

project folder

👉 Follow these steps to create a Sites folder for all your class projects and demos.

  1. Go to your home folder. The path (depending on your OS) is:
    • Mac: /Users/<yourusername>/
    • Windows: C:\Users\<yourusername>\
  2. Create a new folder in your home called Sites (yes, uppercase S). The path will be:
    • Mac: /Users/<yourusername>/Sites/
    • Windows: C:\Users\<yourusername>\Sites\
  3. Create a new folder in Sites called critical-web-design. The path will be:
    • Mac: /Users/<yourusername>/Sites/critical-web-design/
    • Windows: C:\Users\<yourusername>\Sites\critical-web-design\

Designing websites requires a visual editor:

  • Good design requires multiple iterations. A visual editor lets you compare and improve on previous versions of a design.
  • Coding is slow. When you design you need to make and quickly judge many visual changes. With a design tool you can pre-visualize the layout before you code.
  • Start new designs with pencil and paper or a whiteboard to create wireframes. Then transition to Figma to complete detailed versions of your design that exactly match (color, resolution, graphics) what you will code. You can even prototype your projects, adding animation and interaction to see how the user experience feels.

👉 Create a free Figma account and start experimenting!


Product Cost Description Cons
Figma Figma free Widely used to layout, illustrate, animate, and prototype websites and apps. ?
Photoshop $$$ Industry standard, uses pixels, capable of web design and much more. Expensive. Large learning curve.
Illustrator $$$ Excellent at vector graphics, therefore should only be used for illustration and print work. Expensive. Large learning
Gimp free Open source Photoshop alternative. Opens PSDs. Tutorials available. Interface can feel clunky. Not widely used.
*Use Adobe products for free in VAC 212 (CAT Card access 8am–1am). wireframe to finished design

A web browser is more than the software you use to access data on the internet. Browsers manage requests for hundreds of remote files on web servers, combine and render response data as media-rich “web pages”, and make them interactive to provide the essential hyperlink (1965) function that “connects” information on the internet.


http requests diagram

For every page visited:

  1. A user clicks on a link on a page in the browser
  2. The browser requests the new page from that website server (the computer where the files are stored)
  3. The browser receives a response, and requests all other content (stylesheets, scripts, images, etc) for the page
  4. Finally, the browser renders the all this content on a user’s device and they continue the process.

Browsers are not all created the same. Some only run on desktop or mobile. Others only run on specific operating systems. There are big differences in how browsers follow (or not!) the WC3 standards when they render the pages you build. Even the browser versions can be quite distinct. Ask any veteran web developer what it was like to work around the bugs on Internet Explorer 6!

browser wars 2008-2019 Graphic depicting usage share during the 2nd browser wars (2008–)

Since the browser is the primary vehicle through which users will encounter your web pages, it follows that it is essential to test your coded pages in the same environment. It would be overwhelming to test every page in all the different browsers, operating systems, and display sizes that are available, but lucky for us, some browsers are more popular than others.

With your group, examine the following table containing usage share on all (desktop and mobile) browsers:

  1. What do you notice?
  2. Based on this data, what do you think the three most important browsers are to install and use in testing?
Browser StatCounter 8/2021 Wikimedia 11/2019 Platform(s)
Chrome Google Chrome* 65.1% 48.7% Windows, MacOS, iOS, Linux
Safari Safari Browser 18.6% 22.0% MacOS & iOS only 😢
Firefox Firefox Browser 3.4% 4.9% Windows, MacOS, iOS, Linux
Edge Microsoft Edge* 3.4% 1.9% Windows, MacOS
Samsung Internet Samsung Internet* 3.1% 2.7% Android & Tizen only 😢
Opera Opera Browser* 2.1% 1.1% Windows, MacOS, iOS, Linux
Internet Explorer Internet Explorer 0.6% 3.9% Windows only 😢
Others 4.6% 14.5%
*Desktop or mobile version (or both) based on Chromium Chromium like Brave Brave. (logos)

Next, compare the data from the Wikipedia browser usage share article, the StatCounter, and Wikimedia.

  1. What do you notice now?
  2. Did your top three browsers change?
Click to learn which browsers you should install

Did you guess, “I should install all of them?” That’s not an incorrect answer. Two important things to learn from the above:

  • 50% of all users are now mobile users. This affects not only the browsers you test on but how you accommodate different display resolutions and devices.
  • And, Chrome is a clone, but it is far and wide the most popular iteration of the Chromium browser.
  • 👉 Install Chrome and Firefox

Source-code editors are text editors designed for writing source code. They might be standalone programs, or run in an integrated development environment (IDE) or a web browser. There are many great source code editors, many of which are multi-platform, free, and highly capable. Here are a few that I have found useful:


VS Code logo

VS (“Visual Studio”) Code is a free source code editor for macOS, Linux, and Windows. It has support for extensions to add functionality to the editor and embedded Git controls. VS Code is developed Microsoft.

👉 Download and install VS Code then follow the tips below.


Atom logo

Atom was a free and open-source source code editor for macOS, Linux, and Windows. Built by GitHub using the Electron framework, it supported plug-ins written in JavaScript, embedded Git controls, and more. Fans for Atom should migrate to the open source fork called Pulsar


We will be using Git and Github Desktop for version control, demos, turning in assignments, and collaboration.

👉 Review the Git & Github Desktop slides


Tools for full-stack web development.

So you’re already familiar with standard front-end web development and ready to try full-stack?