HTML object data Attribute

HTML <object> tag : How to use the <object> element to embed an image

Definition and Usage

The data attribute specifies the URL of the resource to be used by the object.

Browser Support

Attribute
data Yes Yes Yes Yes Yes

Syntax

<object data="URL">

Attribute Values

Value Description
URL Specifies the URL of the resource to be used by the object.

Possible values:

  • An absolute URL - points to data on another web site (like href="http://www.example.com/images/pic_trulli.jpg")
  • A relative URL - points to data within a web site (like href="pic_trulli.jpg")

❮ HTML <object> tag