bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/HTML/Graphics, Media, and Browser Features
HTML•Graphics, Media, and Browser Features

HTML Plug-ins

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind HTML Plug-ins?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

<___ width="100%" height="500px" data="snippet.html"></object>
3Order

Put the learning moves in the order that makes the concept easiest to apply.

Plug-ins are computer programs that extend the standard functionality of the browser.
The <embed> Element
The <object> Element

Plug-ins are computer programs that extend the standard functionality of the browser.

Plug-ins

  • To run Java applets
  • To run Microsoft ActiveX controls
  • To display Flash movies
  • To display maps
  • To scan for viruses
  • To verify a bank id

Warning !

Most browsers no longer support Java Applets and Plug-ins.

ActiveX controls are no longer supported in any browsers.

The support for Shockwave Flash has also been turned off in modern browsers.

The <object> Element

The <object> element is supported by all browsers.

The <object> element defines an embedded object within an HTML document.

It was designed to embed plug-ins (like Java applets, PDF readers, and Flash Players) in web pages, but can also be used to include HTML in HTML:

Example

Formatted code
<object width="100%" height="500px" data="snippet.html"></object>

Live preview

Example

Formatted code
<object data="audi.jpeg"></object>

Live preview

The <embed> Element

The <embed> element is supported in all major browsers.

The <embed> element also defines an embedded object within an HTML document.

Web browsers have supported the <embed> element for a long time. However, it has not been a part of the HTML specification before HTML5.

Example

Formatted code
<embed src="audi.jpeg">

Live preview

Note that the <embed> element does not have a closing tag. It can not contain alternative text.

The <embed> element can also be used to include HTML in HTML:

Example

Formatted code
<embed width="100%" height="500px" src="snippet.html">

Live preview

Previous

HTML Geolocation API

Next

HTML Drag and Drop API