Menu
Media & Embedded Content

<embed> & <object>

Generic embeds for PDFs, Flash (legacy), and plugins.

1Embedding External Content

Both embed external resources. <object> lets you provide fallback content between the tags; <embed> is a simpler void element.

Example Code
<object data="report.pdf" type="application/pdf" width="600" height="400">
  <p>PDF preview not supported. <a href="report.pdf">Download instead</a>.</p>
</object>

<embed src="diagram.svg" type="image/svg+xml" />

Finished reading?

Mark this topic as complete to track progress.