We use a tag for this as plugins. that is object. IT can be used for video,audio,image etc
-----------------------------------------------------------------------------------------------------------
<html>
<head>
<title>
html with plugins. Plugins is a small program that extends the functionality of browser. Like To display Flash movies To display maps To scan for viruses To verify a bank id
</title </head>
<!--
now-a-days most of the browsers are not supporting plugins.
it does not mean that they do not work with some applets
or viruses etc.
->for this, we are using one tag called object
->we can use this tag
->for image
->for video
->for audio etc.
-->
<body>
for picture,<br>
<object width="100%" height="500px" data="../pictures/picture.jpg"></object> for video,<br>
<object width="100%" height="500px" data="../video/elon musk.mp4"></object><br> for audio,
<object width="100%" height="500px" data="../video/ommusic.mp3"></object><br>
<!--note:we can also use embedded tag or video controls or audio controls tag-->
</body>
</html>