basic question:
what is the html code for playing a mp3 on a webpage?
reason for the question:
I've been using this code:
<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="242"HEIGHT="28"
CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">
<PARAM name="SRC" VALUE="music.mp3">
<PARAM name="AUTOPLAY" VALUE="false">
<PARAM name="CONTROLLER" VALUE="true">
<EMBED SRC="music.mp3" WIDTH="242" HEIGHT="28" AUTOPLAY="false" CONTROLLER="true" PLUGINSPAGE="http://www.apple.com/quicktime/download/">
</EMBED>
</OBJECT> </p><center>
which works fine if you have quicktime or a Mac, but for windows it works sometimes and sometimes not even if the windows machine has quicktime installed,
so I was wondering if there was simpler code for playing mp3's on a webpage without all of that code above which I used originally to display .mov files and changed that to mp3 and it worked for macs but not all pcs.
so... anything simpler?
thanks!