<!DOCTYPE html> <html> <head> <title>Simple Calculator</title> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> <FORM name="Keypad" action=""> <input name="ReadOut" id="output" type="Text" size=24 value="0" readonly> <table> <tr> <td><input id="btn7" type="Button" value=" 7 " onclick="NumPressed(7)"></td> <td><input id="btn8" type="Button" value=" 8 " onclick="NumPressed(8)"></td> <td><input id="btn9" type="Button" value=" 9 " onclick="NumPressed(9)"></td> <td colspan="2"><input id="btnC" type="Button" value=" C " onclick="Clea...