Putting music on a web page
-
I built a website using a "web wizard" program from Network Solutions. This program does not require the user to have HTML knowledge. I asked Network Solutions how to install background music on the site. I was told they could not help me but that it is possible. From what I could understand their server is not accesible due to the "web wizard" program and HTML knowledge is needed. How can I do it?
-
I built a website using a "web wizard" program from Network Solutions. This program does not require the user to have HTML knowledge. I asked Network Solutions how to install background music on the site. I was told they could not help me but that it is possible. From what I could understand their server is not accesible due to the "web wizard" program and HTML knowledge is needed. How can I do it?
If you can put HTML in, you should be able to do the following:
<embed
src="somefile.mp3"
autoplay="true" loop="true"
width="200" height="45"/>I don't know about browser compatibility, but there's also the
bgsound
tag which hassrc
andloop
attributes. Michael Flanakin Web Log