Skip to content

Inserting Images

Rebecca F edited this page Nov 7, 2022 · 2 revisions

Inserting Images into the Web Page

For a tutorial on inserting images, I'd recommend this website: https://www.w3schools.com/tags/tag_img.asp

First, save the image you want to add to the web page into the images folder. Then, add the following code in the place you want to insert the image:

<img src="images/img.jpg" alt="My Image" width="500" height="600">

Change img.jpg to the name of your file and you can change the width and height values of the image.

Clone this wiki locally