- 8 months ago
- Aditya Patel
- 594 Views
- 0 Comments
- HTML
Introduction:
In this article we are going to explain what
is embed tag in html or how to use embed tag in html or how to embed audio or
video on the web page with example.
Description:
The <embed>
element can
be used to embed external application or interactive content, typically multimedia content like audio or video into
an HTML document.
Let’s see an example of <embed>
tag:
!DOCTYPE html>
<html>
<head>
<title>Example of embed tag</title>
</head>
<body>
<embed src="demo.mp4" width="400px" height="200px">
</body>
</html>
Output:
I hope this article will help to you after
reading.
0 comments