Use the data attribute in HTML to specify the URL of the resource to be used by the object in the HTML.
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!