Open In App

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

Improve
Improve
Like Article
Like
Save
Share
Report

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 

  • absolute URL: It points to another website.
  • relative URL: It points to a file within a website.

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

HTML




<!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:


Last Updated : 02 Jun, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads