tags:

views:

24

answers:

1

how to play mp3 files in an image button in html page

A: 

Make assign background Image for DIV. Then, put into DIV.

<HTML>
    <HEAD>
    </HEAD>
    <BODY>
        <div style="background:url('http://www.adobe.com/products/coldfusion/images/rail_cf9mnemonic.jpg'); width:40px; height:40px;">
            <EMBED width="30" height="30" src="myfile.mp3" autostart=true loop=false volume=100 hidden=true><NOEMBED><BGSOUND src="myfile.mp3"></NOEMBED>
        </div>
    </BODY>
</HTML>
ppshein