Param HTML

HTML <param> Tag To pass the parameters to the plugin included with the <object> tag, the HTML <param> tag is used with the HTML <object> tag. Multiple <param> tags can be used within an <object> element. Syntax: <param name=” ” value=””> Example: <!DOCTYPE html> <html> <body> <p>Example:</p> <object data=”peacock.wav”> <param name=”autoplay” value=”true”> </object> </body> </html> … Read more

Object HTML

HTML <object> Tag To embed multimedia files (video, audio, image, PDF, Java Applets, or another page) on a web page, the HTML <object> tag is used. To pass the parameters to the plugin included with the <object> tag, the HTML <param> tag is used with the HTML <object> tag. The content within the <object> tag … Read more

Output HTML

HTML <output> Tag To display the result of a certain calculation or the outcome of a user action the HTML <output> tag is used. It was introduced in HTML5. Syntax: <output>……</output> Example: <!DOCTYPE html> <html> <body> <form oninput=”z.value=parseInt(x.value)+parseInt(y.value)”> <label>First Value:</label><br><br> <input type=”number” id=”y” value=”100″><br><br>+<br><br> <label>Second Value:</label><br><br> 0<input type=”range” id=”x” value=”100″>100 <br><br>=<br><br> <label>Output:</label> <output name=”z” for=”x … Read more

Option HTML

HTML <option> Tag Within a <select> or <datalist> element, we can define options in a dropdown list using the HTML <option> tag. Each dropdown list in HTML contains at least one <option> element. Syntax: <option value=””>…..</option> Example: <!DOCTYPE html> <html> <body> <h3> Select an Option:</h3> <select> <option value=”Apple”>Apple</option> <option value=”Mango”>Mango</option> <option value=”Pineapple”>Pineapple</option> <option value=”Papaya”>Papaya</option> </select> … Read more

Optgroup HTML

HTML <optgroup> Tag Within an HTML <select> element, we can group related <options> in a drop-down list, using the HTML <optgroup> tag. Thus it provides easy access to the dropdown list, especially for a list with a large number of options. Syntax: <optgroup label=” “>……..</optgroup> Example: <!DOCTYPE html> <html> <body> <h3> Select an Option:</h3> <select> … Read more

OL HTML

HTML <ol> Tag As the name itself suggests, all the list items are marked with numbers by default in an Ordered List or Numbered List. It is popularly known as HTML Ordered List and hence starts with the <ol> tag. The list items in an HTML Ordered List start with the <li> tag. Tag Specific … Read more

Noscript HTML

HTML <noscript> Tag To specify alternate content, if scripting is disabled from the browser and if the user still wants to access the web page, the HTML <noscript> tag is used. It can be placed either within the HTML<head> tag or the HTML <body> tags. When used inside the HTML <head> tag, it must contain … Read more

Noframes HTML

HTML <noframes> Tag The HTML <noframes> tag is not supported by HTML5. An alternative text can be added to be displayed in case the browser does not support the <frame> content, using the HTML <noframes> tag. It is placed within the HTML <frameset> tag along with the <frame> tag but is now deprecated. Syntax: <noframes>……..</noframes> … Read more

Nav HTML

HTML <nav> Tag To specify a section to contain navigation links, the HTML <nav> tag is used. The link is either within the current document or to another document. It does not contain all the links, but only the major block of navigation links. It was introduced in HTML5. Syntax: <nav>…..</nav> Example: <!DOCTYPE html> <html> … Read more