HTML Object Data Attribute



Tha data attribute of the <object> element sets the URL of the resource, which can be audio, video, pdf, flash, etc. used by the object.

Following is the syntax:

<object data="url">

The url is the URL of the resource used by the object.

Let us now see an example to implement the data attribute of the <object> element:

Example

 Live Demo

<!DOCTYPE html>
<html>
<body>
<h2>CSS Demonstrating Application</h2>
   <object data="https://www.tutorialspoint.com/flex/samples/CSSApplication.swf" height="400" width="600"></object>
</body>
</html>

Output

In the above example, we have set the URL of the resource, which is a .swf file i.e. a flash file:

<object data="https://www.tutorialspoint.com/flex/samples/CSSApplication.swf" height="400" width="600"></object>

The external link we have used in the <object> element is:

https://www.tutorialspoint.com/flex/samples/CSSApplication.swf
Updated on: 2019-07-30T22:30:26+05:30

103 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements