Show Output
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML output Tag</title> </head> <body> <form oninput="result.value=parseInt(a.value)+parseInt(b.value)"> <input type="range" id="a" value="50"> + <input type="number" id="b" value="100"> = <output name="result" for="a b"></output> </form> </body> </html>