Advertisement
Guest User

Untitled

a guest
Aug 26th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset=utf-8/>
  5. <title> Calculate multiplication and division of two numbers </title>
  6. <style type = "text/css">
  7. body { margin: 30px;}
  8. </style>
  9. </head>
  10. <body>
  11. <form>
  12. 1st Number : <input type="text" id="firstNumber" /><br>
  13. 2nd Number : <input type="text" id="secondNumber" /><br>
  14. <input type="button" onClick="multiplyBy()" Value="Multiply" />
  15. <input type="button" onClick="divideBy()" Value="Divide"/>
  16. </form>
  17. <p> The Result is : <br>
  18. <span id = "result"></span>
  19. </p>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement