In order to be compatible with various internet browsers, such as Internet Explorer, Netscape and Firefox, both the Object and the Embed tags were used. The Embed tags were nested inside the Object tags.
Object Tags
<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab" WIDTH="160" HEIGHT="16" align="middle">
<PARAM name="SRC" VALUE="audio/advantages_audio_clip.mov">
<PARAM name="AUTOPLAY" VALUE="false">
<PARAM name="CONTROLLER" VALUE="true">
</OBJECT>
Above
are the Object Tags used.
The classid and codebase indentify the plugin as QuickTime.
The width and height set the size of the controller. A sound file controller is 160 pixels wide and 16 pixels high.
The align was set to "middle" so the controller would appear in center of the page.
Three parameters were set:
SRC to give the path and name of the QuickTime file;
Autoplay was set to "false" so the sound file would not play until the "play" button was clicked;
Controller was set to "true" to make it visible.
Embed Tags
<EMBED SRC="audio/advantages_audio_clip.mov" WIDTH="160" HEIGHT="16" align="middle" AUTOPLAY="false" CONTROLLER="true" PLUGINSPAGE="http://www.apple.com/quicktime/download/">
</EMBED>
Above are the Embed tags.
As with the Object tags:
The
the identity of the
plugin is specified: "Pluginspage;"
The width and height for the controlled are given (160 and 16);
The scr indicates the path and the name of the sound file;
Autoplay was set to "false" so the sound file would not play until the "play" button was clicked;
Controller was set to "true" to make it visible.
Important Note 
In order to work properly the values for each attribute must be set identically to match in both the Object and the Embed tags.
Combined Tags
Below is the combined code that is required for the embedded sound file to operate properly in most browsers.
The Object Tags are in blue and the Embed tags are in red.
<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab" WIDTH="160" HEIGHT="16" align="middle">
<PARAM name="SRC" VALUE="audio/advantages_audio_clip.mov">
<PARAM name="AUTOPLAY" VALUE="false">
<PARAM name="CONTROLLER" VALUE="true">
<EMBED SRC="audio/advantages_audio_clip.mov" WIDTH="160" HEIGHT="16" align="middle" AUTOPLAY="false" CONTROLLER="true" PLUGINSPAGE="http://www.apple.com/quicktime/download/">
</EMBED>
</OBJECT>
|