How to embed a sound file in your web page

To embed a single Midi file, Insert the following HTML code in the <BODY> section of the page: <embed src=”your_midi_file.mid” autostart=”true” hidden=”true” loop=”true“> With a WAV or MP3 file: <embed src=”your_wave_file.wav” autostart=”true” hidden=”true” loop=”true“> or <embed src=”your_mp3_file.mp3” autostart=”true” hidden=”true” loop=”true“> The sound file starts on page load, it’s hidden and repeats. To change this so …