Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Elements

0/1

HTML Attributes

0/1

HTML Headings

0/1

HTML Paragraphs

0/1

HTML Styles

0/1

HTML Formatting

0/1

HTML Quotation

0/1

HTML Comments

0/1

HTML Colors

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Block and Inline

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML - The Head Element

0/1

HTML Style Guide

0/1

HTML Entities

0/1

HTML Symbols

0/1
Text lesson

HTML Plug-ins

Plug-ins

Plug-ins were created with diverse uses in mind:

  • Running Java applets
  • Running Microsoft ActiveX controls
  • Displaying Flash movies
  • Showing maps
  • Scanning for viruses
  • Verifying bank IDs

Important note:

  • Most browsers no longer support Java Applets and Plug-ins.
  • ActiveX controls are no longer supported in any browsers.
  • Support for Shockwave Flash has also been disabled in modern browsers.

The <object> Element

The <object> element is universally supported by all browsers.

It defines an embedded object within an HTML document and was originally intended for embedding plug-ins such as Java applets, PDF readers, and Flash Players into web pages. It can also be used to include HTML content within HTML.

Example

<object width=”100%” height=”500px” data=”snippet.html”></object>

Or, if preferred, it can also be used for embedding images.

Example

<object data=”audi.jpeg”></object>

The <embed> Element

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

It defines an embedded object within an HTML document.

While web browsers have supported the <embed> element for a significant period, it was not formally included in the HTML specification until HTML5.

Example

<embed src=”audi.jpeg”>
Note that the <embed> element does not require a closing tag and cannot contain alternative text.

The <embed> element can also be utilized to embed HTML content within HTML documents.

Example

<embed width=”100%” height=”500px” src=”snippet.html”>