w3resource

HTML5: How to define a parameter for an object?

Go to Exercise page

Solution:

HTML Code:

<!DOCTYPE html><!-- Define document type as HTML5 -->
<html><!-- Start of HTML document -->
<head><!-- Start of head section -->
<meta charset="utf-8"><!-- Define character encoding -->
<title>How to define a parameter 
for an object</title><!-- Title of the document -->
</head><!-- End of head section -->
<body><!-- Start of body section -->
Parameter <!-- Textual content indicating parameter description -->
<object data="https://www.w3resource.com/html-
css-exercise/basic/solution/
beach.wav"><!-- Define object element with audio data -->
<param name="autoplay" value="true"><!-- Define parameter for object -->
</object><!-- End of object element -->
</body><!-- End of body section -->
</html><!-- End of HTML document -->

Explanation:

  • This HTML code demonstrates how to define parameters for an object element, particularly for embedding audio content.
  • The <object> element is used to embed an external resource, in this case, an audio file specified by the data attribute.
  • Inside the <object> element, a <param> element is used to define parameters for the embedded object.
  • The name attribute specifies the name of the parameter, and the value attribute specifies its value.
  • In this example, the autoplay parameter is set to true, indicating that the audio should start playing automatically when the page loads.
  • The text "Parameter" before the <object> element seems to provide a description or context for the parameter being defined.

Live Demo:

See the Pen param-answer by w3resource (@w3resource) on CodePen.


See the solution in the browser

Supported browser

Firefox logo Chrome logo Opera logo Safari logo Internet Explorer logo
Yes Yes Yes Yes Yes

Go to Exercise page

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.