HTML object Tag: Embedding External Resources

Rumman Ansari   Software Engineer   2024-07-28 03:13:33   432  Share
Subject Syllabus DetailsSubject Details
☰ TContent
☰Fullscreen

The HTML <object> tag is used to embed external resources, such as images, videos, Java applets, and PDF documents, into an HTML document. It can also be used to embed other web-based content, such as Flash animations or interactive games.

The <object> tag has a number of attributes that can be used to customize the way the embedded content is displayed and interacted with. Some of the most commonly used attributes include:

  • data: The URL of the external resource to be embedded.
  • type: The MIME type of the embedded resource.
  • width and height: The dimensions of the embedded content.
  • alt: Alternative text to be displayed if the embedded content cannot be displayed.

Here is an example of using the <object> tag to embed an image:

<span class="pln">
</span><span class="tag">&lt;object</span><span class="pln"> </span><span class="atn">data</span><span class="pun">=</span><span class="atv">"image.jpg"</span><span class="pln"> </span><span class="atn">type</span><span class="pun">=</span><span class="atv">"image/jpeg"</span><span class="pln"> </span><span class="atn">width</span><span class="pun">=</span><span class="atv">"400"</span><span class="pln"> </span><span class="atn">height</span><span class="pun">=</span><span class="atv">"300"</span><span class="pln"> </span><span class="atn">alt</span><span class="pun">=</span><span class="atv">"A beautiful sunset"</span><span class="tag">&gt;</span><span class="pln">
  </span><span class="tag">&lt;p&gt;</span><span class="pln">Sorry, your browser does not support the object tag.</span><span class="tag">&lt;/p&gt;</span><span class="pln">
</span><span class="tag">&lt;/object&gt;</span><span class="pln">
</span>

In this example, the <object> tag will embed the image image.jpg into the HTML document, with dimensions of 400x300 pixels. If the image cannot be displayed, the text "Sorry, your browser does not support the object tag." will be displayed instead.

It is important to note that the <object> tag may not be supported by all browsers, so it is a good idea to include fallback content within the <object> tag in case the embedded content cannot be displayed.


No Questions Data Available.
No Program Data.

Stay Ahead of the Curve! Check out these trending topics and sharpen your skills.