Which two outcomes will this code fragment accomplish? (Each correct answer presents a complete solution. Choose two.)
Audio on the Web
Until now, there has not been a standard for playing audio files on a web page.
Today, most audio files are played through a plug-in (like flash). However, different browsers may have different plug-ins.
HTML5 defines a new element which specifies a standard way to embed an audio file on a web page: the
Browser Support
Internet Explorer 9+, Firefox, Opera, Chrome, and Safari support the
Example:
<source src='horse.ogg' type='audio/ogg'>
<source src='horse.mp3' type='audio/mpeg'>
Your browser does not support the audio element.
Currently there are no comments in this discussion, be the first to comment!