programming-examples/html/Basics/Inserting video in HTML documents using the object element.html

10 lines
271 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>Example of Inserting Video Using embed Element</title>
</head>
<body>
<embed src="../video/blur.swf" width="400px" height="200px">
</body>
</html>