-
Notifications
You must be signed in to change notification settings - Fork 1
Inserting Images
Rebecca F edited this page Nov 7, 2022
·
2 revisions
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.