insert another audio element below the h3 element, music option 2. add the controls attribute to the audio element. insert two source elements within the audio element and use the two audio-rock audio files contained within the /media folder.

Respuesta :

The HTML audio tag with the h3 element is shown below.

Coding Part:

<audio controls>

 <source src="horse.ogg" type="audio/ogg">

 <source src="horse.mp3" type="audio/mpeg">

 Your browser does not support the audio tag.

</audio>

What is HTML?

The HyperText Markup Language (HTML) is a set of markup symbols or codes that are inserted into a file for Internet display. The markup instructs web browsers on how to display the words and images on a web page.

Each individual piece of markup code (which would fall between "" and ">" characters) is referred to as an element, though it is also known as a tag by many people. Some elements come in pairs, indicating when a display effect will begin and when it will end.

To know more about HTML, visit: https://brainly.com/question/4056554

#SPJ4