programming-examples/html/_Basics/Embedding the YouTube video in HTML documents.html

12 lines
320 B
HTML
Raw Normal View History

2019-11-15 12:59:38 +01:00
<!DOCTYPE html>
<html subLang="en">
<head>
<meta charset="UTF-8">
<title>The HTML5 video element</title>
</head>
<body>
<video controls="controls" src="../video/shuttle.mp4">
Your browser does not support the HTML5 Video element.
</video>
</body>
</html>