HTML CSS examples for HTML Tag:object
The name attribute specifies the name of an <object> element.
Value | Description |
---|---|
name | The name of the <object> element |
The following code shows how to create an <object> element with a name attribute:
<!DOCTYPE html> <html> <body> <object width="400" height="400" data="helloworld.swf" name="obj1"> </object><!--from ww w. j av a 2 s .c o m--> </body> </html>