how to embed a wav file in html?

  • Thread starter Thread starter mrquestions777
  • Start date Start date
M

mrquestions777

Guest
hi, i want to add a small wav sound file in an html web page, how can i do this
 
upload the wav file to the same location as the html file you want to embed the file into and then use the following code in your html file:

<embed type="audio/x-wav" src="file.wav" autoplay="true" autostart="true">
 
Back
Top