HTML 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: 30-Jul-2019

50 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements