Advertisement
Home Open Editor ❯

HTML <object> data Attribute

Example

<object data="img-boy.jpg" width="300" height="150"></object>

Try this code ❯

Meaning

The data attribute specifies a URL for data required by an object.


Standard Syntax

<object  data="URL">...</object>


Advertisement

Attribute Values

Value Description
URL

Value can be

  • An absolute URL - resource within or another web site ( href="http://www.example.com/index.html")
  • A relative URL - the resource within a web site ( href="index.html")
Home Open Editor ❯
Advertisement