programming-examples/html/Basics/Embedding video in HTML documents.html

14 lines
417 B
HTML
Raw Normal View History

2019-11-18 14:44:36 +01:00
<!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>