Creating a link to play a sound file in HTML.

Issue

Creating a link to play a sound file in HTML.

Solution

Inserting the sound file in a A HREF statement will allow the browser to open and play the midi file if the viewer of your web page has properly configured the browser.

<A HREF="http://www.computerhope.com/clouds.mid">Click here to play sound</a>

or

<embed src="http://www.computerhope.com/clouds.mid" align="baseline" border="0" width="145" height="60" autostart="false" loop="true">

Example

Using the first section of HTML code in the above solution will give you the below link.

Click here to play sound

Using the second section of HTML code will give you the below.

  • Category
  • HTML Q&A
  • Related pages
  • HTML Help
  • Solved?
  • Were you able to locate the answer to your question?