Computer Science, asked by priyakumarismga509, 5 months ago

write an html program to show the output - this is my first web page

in

Answers

Answered by shivambmgo
0

Answer:

Perform a calculation and show the result in an <output> element:

<form oninput="x.value=parseInt(a.value)+parseInt(b.value)">

 <input type="range" id="a" value="50">

 +<input type="number" id="b" value="25">

 =<output name="x" for="a b"></output>

</form>

Definition and Usage

The <output> tag is used to represent the result of a calculation (like one performed by a script).

Browser Support

The numbers in the table specify the first browser version that fully supports the element.

Element    

<output> 10.0 13.0  4.0 5.1 11.0

Attributes

Attribute Value Description

for element_id Specifies the relationship between the result of the calculation, and the elements used in the calculation

form form_id Specifies which form the output element belongs to

name name Specifies a name for the output element

Global Attributes

The <output> tag also supports the Global Attributes in HTML.

Event Attributes

The <output> tag also supports the Event Attributes in HTML.

Related Pages

HTML DOM reference: Output Object

Default CSS Settings

Most browsers will display the <output> element with the following default values:

output {

 display: inline;

}

Explanation:

Mark brainliest cuz i am brainy and give code

Answered by dhanisinghoffcial
2

Answer:

hey mate here is the correct ans

<html>

<head> This is my first web page</head>

<body>

THIS IS MY FIST WEB PAGE

</body>

</html>

please mark it as a brainlist ans and follow me please

Similar questions