1. The <audio> Tags

Similar to the <video> element, the audio element is created using a set of opening and closing audio tags.

Single-Source

Element Breakdown
<audio src="#" preload controls></audio>

Multiple-Source

Element Breakdown
<audio preload controls>
   <source src="#" type="">
   <source src="#" type="">
</audio>

html audio tags