<html>
<head>
  <title>A Sample of Embedding media</title>
</head>

<!-- The following is an example of placing an
  embedded object on the webpage.

  Below is an example of an "autoload at start."

  Later is an example of a table with embedded
  objects (audio & video).
-->

<embed autostart="false"
       hidden="false"    
       border="1"
       align="bottom"
       src="cheers.mid"
       width="145"
       height="20"
>

<center>The following creates a generic table and
places some objects within it
</center>

<table align=center border=1>
  <!-- first row -->
  <tr>
     <th>Link</th>
     <th colspan=1>Description</th>
  </tr>

  <!-- second row -->
  <tr>
     <td><a href="http://www.cariboo.bc.ca">UCC</a></td>
     <td>click the link to go to UCC</td>
  </tr>

  <!-- third row -->
  <tr>
     <td><embed autostart="false" hidden="false"
               src="lifter.mpg"
               width=150 height=180>
     </td>
     <td>run the clip of a lifter</td>
  </tr>

  <!-- fourth row -->
  <tr>
     <td><embed autostart="false" hidden="false"
               src="startrek.mid"
               width=145 height=20>
     </td>
     <td>run the midi file</td>
  </tr>

  <!-- fifth row -->
  <tr>
     <td><embed autostart="false" hidden="false"
               src="rain_man.mid"
               width=145 height=20>
     </td>
     <td>run the midi file</td>
  </tr>

</table>

<table datasrc="http://www.cariboo.bc.ca">
</table>

</body>
</html>