The HTML | data Attribute is used to specify the URL of the Embedded file of the Object. It can be used with the <object> element.
Syntax:
<object data="URL">
Example: This Example illustrates the use of the data Attribute.
<!DOCTYPE html> <html> <head> <title>HTML | data Attribute</title> </head> <body> <center> <h1>HTML | data Attribute</h1> <br> </center> <object data= width="550px" height="150px"> GeeksforGeeks </object> </body> </html> |
chevron_right
filter_none
Output:

Supported Browsers: The browser supported by HTML data Attribute are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari
Recommended Posts:
- HTML | <object> data Attribute
- HTML | data value attribute
- What is the use of data-reactid attribute in HTML ?
- HTML | <html> xmlns Attribute
- How to select elements by data attribute using CSS?
- How to sort element by numerical value of data attribute using JavaScript ?
- HTML | scoped Attribute
- HTML | <th> valign Attribute
- HTML | <col> align Attribute
- HTML | poster Attribute
- HTML | Class Attribute
- HTML | style attribute
- HTML | <area> target Attribute
- HTML | oninvalid Event Attribute
- HTML | <select> autocomplete Attribute
- HTML & CSS | Tabindex attribute & Navigation bars
- HTML | <table> bgcolor Attribute
- HTML | onsubmit Event Attribute
- HTML | onunload Event Attribute
- HTML | srcdoc Attribute
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.


