HTML CSS examples for HTML Tag:object
You can use the object element to embed images in your HTML documents.
Embedding an Image with the object Element
<!DOCTYPE HTML> <html> <head> <title>Example</title> </head> <body> <object data="http://java2s.com/resources/g.png" type="image/png"> </object> </body> </html><!-- w w w . j a va 2 s. c o m-->