diff --git a/curriculum/challenges/english/blocks/lecture-understanding-performance-in-web-applications/67d2f7183a537d7a4908a9ff.md b/curriculum/challenges/english/blocks/lecture-understanding-performance-in-web-applications/67d2f7183a537d7a4908a9ff.md index c9ad7e9a3a0..a9fd46fbb1b 100644 --- a/curriculum/challenges/english/blocks/lecture-understanding-performance-in-web-applications/67d2f7183a537d7a4908a9ff.md +++ b/curriculum/challenges/english/blocks/lecture-understanding-performance-in-web-applications/67d2f7183a537d7a4908a9ff.md @@ -17,7 +17,7 @@ Number 1: optimize media assets. Large images and videos are common culprits for - Lazy Loading: Defer loading off-screen images and videos until they're needed. In HTML, add the `loading="lazy"` attribute to your media tags. -Next, we have minimize HTTP requests. Each file your website requests adds to the load time. Reducing the number of HTTP requests can lead to faster page loads. You can: +Next, we have to minimize HTTP requests. Each file your website requests adds to the load time. Reducing the number of HTTP requests can lead to faster page loads. You can: - Combine Files: Merge CSS and JavaScript files to reduce the number of requests.