Download The Starter Files
This course comes with a set of starter files to use as you move through the course.
They are available to download here.
As you move through the course, the starter files contain a folder for each lesson. Many of the lesson folders contain a simple html page to add our code to, along with some sample images to work with.
Most of the files are a simple starting point like this:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Using the wrong size images</title>
</head>
<body></body>
</html>
Open this up in your preferred text editor, and open the page in the browser.
You can open the index.html in the browser by double clicking the file in the project folder.
If using Visual Studio Code, you can also right-click the file in the side bar > copy path > paste into browser.
Also remember to do this each time we move to the next folder, or you make any changes.
This leaves us free to focus on learning without all the setup work. Let's begin!