The below code relates to a video file saved in both webm and mp4 format on my laptop. When I 'run' what I have written so far in my experimental coding, the video plays fine in Chrome, but in IE I get the message 'Invalid Source'.
<video poster="file:///D:/TouchofClass/images/Nuts.jpg"
width="450" height="325"
preload="none"
controls="controls">
<source src="file:///D:/TouchofClass/images/eh5v.files/html5video/Cheesy.mp4"/>
<source src="file:///D:/TouchofClass/images/eh5v.files/html5video/Cheesy.webm"/>
</video>
<source>
tag does not use or need a closing slash. – Rob