fix(curriculum): correct wording, quiz feedback, and comma splice in Working with Images and SVGs lectures (#68840)

This commit is contained in:
Ayush
2026-07-15 14:42:31 +05:30
committed by GitHub
parent 2c6eab1d4f
commit 76e3772375
2 changed files with 5 additions and 5 deletions
@@ -7,7 +7,7 @@ dashedName: what-are-common-ways-to-optimize-media-assets
# --description--
There are three tools to consider when using media, such as images, on your web pages: the size, the format, and the compression.
There are three things to consider when using media, such as images, on your web pages: the size, the format, and the compression.
Let's talk about the size of your images first. When you are building a website, you'll often style images to display in a specific size. For example, you might have an image display at a 640x480 resolution. 640 represents the width while 480 represents the height in pixels. When preparing your image you want to scale it to a 640x480 size to match that styling. If you serve an image that is 1920x1080 but you are styling it to be much smaller, you're requiring your users to download unnecessary data. A smaller resolution results in a smaller file size.
@@ -99,7 +99,7 @@ WEBP
### --feedback--
This format can use both lossy and lossless compression, so it is not specifically known for degrading image quality.
Review the end of the lesson to find which format uses lossy compression.
---
@@ -107,7 +107,7 @@ PNG
### --feedback--
This format uses lossless compression, so compressing it would not result in a degraded quality.
Review the end of the lesson to find which format uses lossy compression.
---
@@ -119,7 +119,7 @@ GIF
### --feedback--
This format uses lossless compression, so compressing it would not result in a degraded quality.
Review the end of the lesson to find which format uses lossy compression.
## --video-solution--
@@ -7,7 +7,7 @@ dashedName: what-are-the-different-types-of-image-licenses
# --description--
Images are considered intellectual property, this means that they are protected by copyright regulations, most often belonging to the creator. By default, images are released as all rights reserved. The creator, or publisher sometimes, holds all copyright for the image.
Images are considered intellectual property. This means that they are protected by copyright regulations, most often belonging to the creator. By default, images are released as all rights reserved. The creator, or publisher sometimes, holds all copyright for the image.
This means that you cannot use them in your web page unless you do one of three things: obtain written permission from the copyright holder, purchase a license from the copyright holder, or incorporate the image in a way that falls under fair use.