14 lines
417 B
HTML
14 lines
417 B
HTML
|
<!DOCTYPE html>
|
||
|
<html subLang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>The HTML5 video element</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<video controls="controls">
|
||
|
<source src="../video/shuttle.mp4" type="video/mp4">
|
||
|
<source src="../video/shuttle.ogv" type="video/ogg">
|
||
|
Your browser does not support the HTML5 Video element.
|
||
|
</video>
|
||
|
</body>
|
||
|
</html>
|