Pokémon Wiki

Don't like the ads? Then create an account! Users with accounts will only see ads on the Main Page and have more options than anonymous users.

READ MORE

Pokémon Wiki
Advertisement

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>The Garvin calculator</title> <link href="../../../practice/layout.css" rel="stylesheet" type="text/css" /> <script src="../../../SpryAssets/SpryValidationTextField.js" type="text/javascript"></script> <script src="../../../SpryAssets/SpryValidationSelect.js" type="text/javascript"></script> <link href="../../../SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" /> <link href="../../../SpryAssets/SpryValidationSelect.css" rel="stylesheet" type="text/css" /> </head>

<body>

Welcome to Garvin's calculator. Prepared to be amazed by SCIENCE and math. Put in some numbers and an operation to get your answer.




<form id="form1" method="post" action="claculator.php">

<label>Type in your first number. <input type="text" name="number1" id="number1" /> </label> A value is required.

<label>Choose an operation. <select name="operation" id="operation"> <option value="a">plus</option> <option value="b">minus</option> <option value="c">multiply</option> <option value="d">divide</option> </select> </label> Please select an item.

<label>Type in your second number. <input type="text" name="number2" id="number2" /> </label> A value is required.

<label> <input type="submit" name="submit" id="submit" value="Submit" /> </label>

 

 

</form> <script type="text/javascript"> </script> </body> </html>

Advertisement