Everything to know about formatting a post

<audio>

Back

<audio controls>
  <source src="https://www.w3schools.com/html/horse.mp3" type="audio/mpeg"> # Multiple <source> tags can be used for if the first <source> doesn't work. It will try each audio file sequentially until it finds an audio file
  Your browser does not support the audio element. #Will only show if all sources fail to show anything
</audio>

1 Like