New! My 44-page ebook "CSS in 44 minutes" is out! 😃

Get it now →

# object

Defines a container for external resource.

Example: Copy

You need to enable Flash to view this content.

<object type="application/x-shockwave-flash" data="/assets/golf.swf" width="800" height="360">
  <param name="movie" value="/assets/golf.swf">
  <param name="wmode" value="transparent">
  <p>You need to enable Flash to view this content.</p>
</object>

data

The URL of the object data.

"/assets/golf.swf"

The value must be a valid URL.

type

Defines the type of the application.

"application/x-shockwave-flash"

The value must be a valid content type.

height

Defines the height of the object.

"50"

The height in pixels.

width

Defines the width of the object.

"150"

The width in pixels.