16 - The HTML Canvas 🖼️

Channeling our inner Bob Ross

What are we learning?

In this lesson we will:

Get Started:  HTML, CSS, and JS

At this point, you should be very comfortable creating a project folder, empty code files, proper naming of files and correct folder structure.

Try this:

 Setup Your HTML

Type or copy/paste the skeleton "boiler plate" code for a basic HTML file


Test your webpage (preview it) and make sure you have no typos!

Find a Small Image  🚴‍♀️

Find a small, fun image - maybe pacman, Mario, or a sports logo - and add it to your images folder.

Add a Canvas and Buttons

The <canvas> tag places a rectangular region that responds to drawing requests. It does not contain the drawing tools, it is merely a display window.

Add four buttons inside a <div>

Setup the Script File   📝

Now let's move to the meat of the project - the script (remember, HTML is not a programming language)!

You're Ready to Paint!  🎨🖼️

Well, not quite... 

As I said, the canvas element is just a display port for the drawings that you do in JavaScript. In order to draw or manipulate the image shown on the canvas, you need to use the "context" object. Don't worry - it's easy!

const canvas = $("display");

const ctx = canvas.getContext("2d");

Then you use ctx. to draw:

ctx.fillStyle = "red";

ctx.fillRect(30, 45, 50, 50);


Your goal:




Full Canvas Reference

Want to learn more? Check out the full canvas API