Skip to content
  • About
  • Computer Languages
  • Design & Illustration
  • Donate
  • Downloads
  • My Documents
  • Office
  • References
  • School Management System
  • Technology Basics
  • Utilities
  • Welcome to the official site of DW Faisalabad
Search for:
DW Faisalabad

DW Faisalabad

Skip to content
  • Languages
    • CSS
    • HTML
    • JavaScript
  • Office
    • Adobe Acrobat
    • Microsoft Office 2016
    • SPSS
    • Shortcut Keys
  • Design & Illustration
    • Adobe Illustrator
    • Adobe Photoshop
    • CorelDRAW
  • Technology
    • Computer
    • Microsoft Windows
    • Online Safety
  • School Management System
  • Utilities
  • Blog
  • YouTube
04 OCT

HTML <param> Tag

Example

Set the “autoplay” parameter to “true”, so the sound will start playing as soon as the page loads:

<object data=”horse.wav”>
<param name=”autoplay” value=”true”>
</object>

Try it Yourself »


Definition and Usage

The <param> tag is used to define parameters for plugins embedded with an <object> element.

Tip: HTML 5 also includes two new elements for playing audio or video: The <audio> and <video> tags.


Browser Support

The <param> tag is supported in all major browsers. However, the file format defined in <object> may not be supported in all browsers.

Element
<param> Yes Yes Yes Yes Yes

Differences Between HTML 4.01 and HTML5

The “type” and “valuetype” attributes are not supported in HTML5.


Differences Between HTML and XHTML

In HTML the <param> tag has no end tag.

In XHTML the <param> tag must be properly closed, like this <param />.


Attributes

Attribute Value Description
name name Specifies the name of a parameter
type media_type Not supported in HTML5.
Specifies the media type of the parameter
value value Specifies the value of the parameter
valuetype data
ref
object
Not supported in HTML5.
Specifies the type of the value

Global Attributes

The <main> tag also supports the Global Attributes in HTML.


Event Attributes

The <main> tag also supports the Event Attributes in HTML.


Related Pages

HTML DOM reference: Parameter Object


Default CSS Settings

Most browsers will display the <param> element with the following default values:

param {
display: none;
}
Categories: HTML Tags / by Zahid Farid 4 October 2018

Post Author: Zahid Farid

Related Posts '

07 OCT

HTML <acronym> Tag

Not Supported in HTML5 Example An acronym is marked up as follows: Can I get this <acronym title="as soon as...

HTML Tags Read More
07 OCT

HTML <section> Tag

Example A section in a document, explaining what WWF is: <section> <h1>WWF</h1> <p>The World Wide Fund for...

HTML Tags Read More
07 OCT

HTML <select> Attributes

HTML <select> autofocus Attribute A drop-down list with...

HTML Tags Read More
07 OCT

HTML <small> Tag

Example Define a smaller text: <p>DW Faisalabad</p> <p><small> - the world's largest web development...

HTML Tags Read More
07 OCT

HTML <source> Attributes

HTML <source> src Attribute An audio player with two source files. The browser should choose which file (if any) it has...

HTML Tags Read More
Search for:

Related Posts

  • HTML <acronym> Tag
  • HTML <section> Tag
  • HTML <select> Attributes
  • HTML <small> Tag
  • HTML <source> Attributes
Go to mobile version