Find an image and copy it to the 'images' folder that was included in your starter files for this course (the starter files were all put in a folder named 'web-programming'). Then add an IMG element below that displays the image. Make sure to set the alt attribute, and you may set the width attribute if you like.
Why is it important to use small file sizes for images (image files that are small in kilobytes)?
So the image is loaded on the web page faster
What types of images should be saved as .jpg files, and what types of images should be saved as .png files?
.jpeg files should be used when its important to have a small files, .png should be used when image quality is a concern
Most web browsers display images at what resolution (how many ppi)?
72ppi
If you want an image to have a transparent background, what type of image should it be (what file extension would you use)?
.png
What are responsive images?
images that change size with the size of the browser or screen
Find another image and copy it to the 'images' folder. Then add an IMG element below that displays the image. Make sure to set the width and alt attributes. Turn the image into a link by nesting it within an A element. Clicking on the image should open up google.com in a new browser tab.
Problem 8Find a video on YouTube that you like, and embed it into this page.