The <embed> tag used for embedding external applications which are generally a web page, a picture, a video into an HTML document.
Syntax:
<embed attributes>
For example:-
<!DOCTYPE html>
<html>
<head>
<title>Embed Tag</title>
</head>
<body>
<embed type="text/html" src="welcome.html" width="500" height="300">
</body>
</html>
Copyright ©2022 coderraj.com. All Rights Reserved.