|
We will be adding tutorials here on a regular basis so check
back often.
-------------------------------------------
Ever wonder how you can get rid of that image tool bar that
shows up near your images in Internet explorer 6?
Just add this piece of Code to the < Head> Section of
your HTML
<META HTTP-EQUIV="imagetoolbar" CONTENT="no">
-------------------------------------------------------------------------
How to play music on your site:
Always give the visitor the option to turn off your music.
Some people listen to their own music when surfing the net so
please be considerate. In some cases, and I have this on my site,
there is no option to turn music off. You cannot embed an MP3
and I know of no way of turning music off while playing one except
to hit the stop button on your browser. In any case you can use
the code below to embed midi's.
<p><embed src="YOUR MUSIC.mid" align="top"
border="0" width="75" height="25" autostart="TRUE" loop="TRUE">
</embed></p>
In
the example I give you above, I have autostart = "FALSE" That
will give the visitor the option of turning the music on if they
want to themselves. The "loop" part of the tag will give you the
option of the midi playing over and over again, I have set at
"False" to play only once. I hope this has helped you some...
-------------------------------------------------------------------------
|