[an error occurred while processing this directive]

Site Menu

HTML
Learn all about HTML, how to format text, add images, create tables, meta taga, and more!
.
JavaScript
Get the low down on JavaScript. See how to create popular JavaScript applications like drop down menus, clocks, dynamic messages, popup boxes, and more.
.
CGI
Concise, easy to follow introdction to CGI and how to install CGI scripts.
.
Web Design
A miscellanous section that includes various web design tutorials

 

123 Web Design!

Adding background music

Many people have asked me how to add background music to their page. Its actually quite simple. Just add the below code to the document:

<bgsound src="mymidi.mid" loop="infinite">
<embed src="mymidi.mid" hidden="true" border="0" width="10" height="10" autostart="true" loop="true">

where "mymidi.mid" is the file path of the midi file you wish to use. The <bgsound> tag is for IE, and the <embed> tag is for NS.