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:
Live Demo
<!DOCTYPE html> <html> <body> <h2>CSS Demonstrating Application</h2> <object data="https://tutorialspoint.com/flex/samples/CSSApplication.swf" height="400" width="600"></object> </body> </html>
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://tutorialspoint.com/flex/samples/CSSApplication.swf" height="400" width="600"></object>
The external link we have used in the <object> element is:
https://tutorialspoint.com/flex/samples/CSSApplication.swf
84 Views
Get certified by completing the course