Advertisement
Home Open Editor ❯

HTML data Attribute

Example

<object data="demo/image.jpg" width="300" height="150"></object>

Try this code ❯

Meaning

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


Standard Syntax

<element data="URL">


Applies to:

The data attribute can be used on the following element:

Element Attribute
<object> data

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