Home Tutorial Html Html5 HTML5 output tag, Example of <output> tag in HTML5.

 
 

HTML5 output tag, Example of <output> tag in HTML5.
Posted on: September 13, 2010 at 12:00 AM
In this section, you will see the use and implementation of <output> tag of HTML5.

HTML5 output tag, Example of <output> tag in HTML5.

In this section, we will introduce you to about the <output> tag. The output tag is used for displaying result of calculation on browser. The <output> tag is not present in HTML5. It has both start and end tag.

Attribute of option:
There are following attributes......

Attributes Value Description
name string Specify name of output element
form id Related form name.
for  id Id of one or more related field

Declaration Syntax :

Declaration syntax of <output> in HTML5.

                      <output   name=""> Text </output>

Example of <output> in HTML5:

Code:
Output_Tag.html
<!doctype html >
<html ><head>
<title>Document title.</title>
<script type="text/javascript">
function multi()
{
a=parseInt(prompt("Enter first number.",0));
b=parseInt(prompt("Enter first number.",0));
document.forms["form"]["result"].value=a*b;
}
</script></head>
<body onload="multi()">
<h1>output tag Example.</h1>
<p><b>Implementation of &lt;output &gt; in HTML5.</b></p>
<form action="roseindia.html" method="get" name="form">
<label>Multiplication of two number:</label>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<output name="result">
</output> </form></body>
</html>
Output:

Download this code

Difference Between HTML5 and HTML4.01:

The <output> tag is available in both HTML5. It is not present in HTML4.01.

Related Tags for HTML5 output tag, Example of <output> tag in HTML5.:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.