HTML 5 Video player

1
2
3
4
5
6
7
8
9
10
11
12
<html>
    <head>
        stuff in here
    </head>
    <body>
        <video width="420">
            <source src="something_visual.mp4" type="video/mp4">
            <source src="something_sound.ogg" type="video/ogg">
            Your browser does not support HTML5 video.
        </video>
    </body>
</html>
X

Language: Other | User: Valkyrie | Created: Nov 13, 2013 | Tags: html html-5 video