fix: Grammatical error in one of the lecture of Front End Development Libraries Certification (#64958)

This commit is contained in:
Shashwath Nayak
2026-01-02 10:12:28 +00:00
committed by GitHub
parent d1dca406a3
commit 679ba978a1

View File

@@ -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.