I have an html5 video element.
<video id="video" loop="loop"> <source src="src.mov"> </video>
I want it to start at a certain time in the video (say ... 10 seconds) and end at a certain time (27 seconds)
I know you can do it in JavaScript, but I want to do it in html. Is there a start / end time tag for a video element?
source share