Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <object> type Attribute

❮ HTML <object> tag

Example

An <object> element with a specified media type:

<object data="pic_trulli.jpg" type="image/jpg" width="400" height="400"></object>
Try it Yourself »

Definition and Usage

The type attribute specifies the Internet media type (formerly known as MIME type) of the object.


Browser Support

Attribute
type Yes Yes Yes Yes Yes

Syntax

<object type="media_type">

Attribute Values

Value Description
media_type The Internet media type of the embedded content.
Look at IANA Media Types for a complete list of standard media types.

❮ HTML <object> tag