Latest web development tutorials

HTML widget

Plug-in function is an extension of HTML browser capabilities.


HTML Assistant (widget)

Helper application (helper application) is a program started by the browser. Helper application, also known as plug-ins.

Auxiliary program can be used to play audio and video (and others). Auxiliary procedure is to use <object> tag to load.

One advantage of using auxiliary programs to play video and audio, you can allow a user to control some or all of the playback settings.

Plug by <object> tag or <embed> tag added to the page.

Most auxiliary manual control applications allow for volume settings and playback features (such as the back, pause, stop and play) (or program).

Note We can use the <video> and <audio> tag to display video and audio

<Object> element

All major browsers support the <object> tag.

<Object> element defines embedded in an HTML document object.

The label for inserted objects (such as embedded Java applets, PDF reader, Flash Player in a Web page).

Examples

<Object width = "400" height = "50" data = "bookmark.swf"> </ object>

try it"

<Object> element can be used to contain the same HTML file:

Examples

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

try it"

Or insert a picture:

Examples

<Object data = "audi.jpeg"> </ object>

try it"

<Embed> element

All major browsers support <embed> element.

<Embed> element represents a HTML Embed object.

<Embed> element has been around for a long time, but has not been described in detail HTML5 before, the element will be validated on HTML 5 pages, not in the HTML 4.

Examples

<Embed width = "400" height = "50" src = "bookmark.swf">

try it"

Note Note <embed> element has no closing tag. You can not use alternate text.

<Embed> element can be used to contain the same HTML file:

Examples

<Embed width = "100%" height = "500px" src = "snippet.html">

try it"

Or insert a picture:

Examples

< embed src= "audi.jpeg" >

try it"