The .MOV media type (Quicktime movies) is not supported in HTML5 browsers using the video
element at this time. I recommend you encode those to MP4 (MPEG4).
But you can try this HTML below. The new video
HTML5 element will not work as it supports limited media types (MP4, OGG, or WEBM). Using the older HTML embed
or object
elements forces the browser to use a plugin to support the video, if one exists. If your Quicktime movie plays, it will depend on how Apple and their Safari browser manage the plugin or player for this media type:
<embed id="embed1" src="test.mov" type="video/quicktime" style="width:320px;height:240px;">
<noembed>Your browser does not support this media object or the embed element.</noembed>
</embed>