Hi,
I have a web page I want whenever somebody visit here it plays a sound.
Printable View
Hi,
I have a web page I want whenever somebody visit here it plays a sound.
IE4 and up
<embed src="'MySong.mid' autostart="true">
Netscape:
<bgsound src="'MySong.mid'">
Charles Zimmerman
http://www.freevbcode.com
I am using this code in the page where I want music. Its not working I have called this page from other link.
<html>
<head>fsjdfls</head>
<bgsound src="Cpqdiag.mid">
<body>
Welcome here
</body>
</html>
First of all you usually need to specify whole path of MIDI song and second...I"m not exactly sure but I think bgsound should go after <body>
<html>
<head>fsjdfls</head>
<body>Welcome here</body>
<bgsound src="C:\yoursong.mid">
</html>