Open In App

How to specify URL of resource to be used by the object in HTML5 ?

In this article, we will cover how to specify the URL of the resource to be used by the object in HTML5. It can be used on pages where content from an external source is required.

It can be done by setting the data attribute to the specified URL in the <object> tag.



Syntax:

<object data="URL">

Possible Values 



Example: In this example, we will see the use of <object> tag.




<!DOCTYPE html>
<html>
<body>
    <h4 style="color: green;">
        GeeksforGeeks
    </h4>
    <p>Object with an URL of the image:</p>
    <object data=
    </object>
</body>
</html>

Output:

Article Tags :