Code Fellows Reading Notes

Media

Video and Audio Content

Explain how the ability to use video and audio on the web has evolved since the early 2000s. The first influx of online videos and audio were made possible by proprietary plugin-based technologies like Flash and Silverlight. Both of these had security and accessibility issues, and are now obsolete, in favor of native HTML solutions

**Describe the use of the src and controls attributes in the

**Why is it important to have fallback content inside the

**Write a very short story where

Grid

How does Grid layout differ from Flex? Grid is a two-dimensional grid-based layout system, and flex is one-directional flow.

Grid container, grid item, and grid line are a few important terms to understand when using Grid. Please describe these terms in a few sentences.

Responsive Images

Besides making a site visually appealing across different screen sizes, why should developers make images responsive? Responsive images allow your site to adjust based on the device it is being viewed on, rather than having a single optimized size.

Define the following attributes srcset and sizes. Write an example of how they are used.

How is srcset more helpful for responsive images than CSS or JavaScript? It allows a site to only load the correct image needed for the site, rather than preloading one image and then switching to a more optimized size.