Similar to the <video> element, the audio element is created using a set of opening and closing audio tags.
Single-Source
  
  
    <audio src="#" preload controls >  </audio>
   
 
Multiple-Source
  
  
    <audio  preload controls >
        
        <source src="#" type="">
        
        <source src="#" type="">
        
     </audio>