HTML Tutorial
<param>
The <param>
tag defines parameters for an embedded object. It is used within the <object>
tag to specify additional information required by the object.
<param>
<param>
<object>
<param name="movie" value="video.mp4">
<param name="width" value="320">
<param name="height" value="240">
</object>
In this example, the <object>
tag embeds a video file named "video.mp4". The <param>
tags specify the width and height of the video player.
Exploring the <param>
tag
To see the <param>
tag in action, try the following:
<!DOCTYPE html>
<html>
<body>
<object>
<param name="movie" value="video.mp4">
<param name="width" value="320">
<param name="height" value="240">
</object>
</body>
</html>
<param>
tag is a child element of the <object>
tag.<param>
tag is not supported in HTML5.<param>
tag to provide additional information to the object, such as its source, width, and height.