<param> HTML Tag

In this article I will discuss the<param> tag.
  • 1914

The HTML param tag is used for passing parameters to an embedded object.In HTML the <param> tag has no end tag.

Example

<html>

<head>

    <title></title>

</head>

<body>

    <object title="showing star" data="images/filled_star.png"

         style="height: 97px; width: 94px">

        <param name="width" value="600" />

        <param name="height" value="600" />

    </object>

</body>

</html>

 

Output

 

red_star.jpg 

 

Ask Your Question 
 
Got a programming related question? You may want to post your question here
 
Programming Answers here

 

© 2020 DotNetHeaven. All rights reserved.