Home  >  Article  >  Web Front-end  >  How do I specify in HTML the URL of a resource to be used by an object?

How do I specify in HTML the URL of a resource to be used by an object?

王林
王林forward
2023-09-17 20:13:021040browse

How do I specify in HTML the URL of a resource to be used by an object?

Use the data attribute in HTML to specify the URL of the resource to be used by the object in the HTML.

Example

You can try running the following code to implement the data attribute -

<!DOCTYPE html>
<html>
   <body>
      <h2>Demonstration</h2>
      <object width = "250" height = "300" data = "demo.swf">
      </object>
   </body>
</html>

The above is the detailed content of How do I specify in HTML the URL of a resource to be used by an object?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete