<object> HTML Tag

In this article we will discuss about how to use the object Tag in HTML.
  • 1648

The <object> Tag in HTML is used to embed the object from outside in HTML document.

HTML Code:

<html>

<head>

    <title>This is my first web page</title>

</head>

<body>

    <object width="400" height="400" data="Sunset.jpg">

    </object>

</body>

</html>

 

Output:

 Clipboard02.jpg

Ask Your Question 
 
Got a programming related question? You may want to post your question here
 
Programming Answers here

 

© 2020 DotNetHeaven. All rights reserved.