ahmed0saber

Sum Calculator in HTML

Nov 15th, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.28 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Sum Calculator</title>
  4. </head>
  5. <body>
  6. <form oninput="x.value=parseFloat(a.value)+parseFloat(b.value)">
  7.   <input type="number" name="a" value="0">
  8.   +
  9.   <input type="number" name="b" value="0">
  10.   =
  11.   <output name="x"></output>
  12. </form>
  13. </body>
  14. </html>
Advertisement
Add Comment
Please, Sign In to add comment