?Why is the fallback option provided to an audio clip?

What will be an ideal response?

?It is considered bad design to add a feature to a web page without also providing some fallback option to users who cannot take advantage of that feature. One type of fallback option is used by specifying two audio sources so that if the browser cannot play the MP3 version of the audio clip, it can attempt to play the OGG version.??If the browser cannot play either version or does not support theaudioelement at all, the user can follow thesourceelements with HTML code that the browser will recognize. The simplest fallback option is a text string indicating that the user needs to upgrade the browser to take advantage of the feature you added to the page.
Plug-ins can act as a fallback option for browsers that do not support the HTML5 multimedia elements by adding the embed element to the end of the audio element as the last option for the browser.

Computer Science & Information Technology

You might also like to view...

To determine that a value is not present in an unordered array of 50 items, how many values must linear search examine on average?

A) 1 B) 6 C) 25 D) 50 E) 51

Computer Science & Information Technology

When a generic class with an unconstrained type parameter is instantiated without specifying an actual type argument,

A) the type Object is used for the unspecified type B) the compiler generates an error C) the computer throws a ClassCastException D) None of the above

Computer Science & Information Technology