<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>n0 calculator form</title> <meta http-equiv="Content-type" content="text/html;charset=UTF-8" > <style type="text/css"> body { background: black; color: #009000; margin: 32px; font-family: "Lucida Console", "MS Gothic", monospace ; } #calc { float: left; width: 200px; background: #504c4d; border: silver solid 2px; } #inst { float: left; width: 272px; border: #009000 solid 2px; margin: 0 0 0 10px; padding: 2px; } #addl { clear: left; } h1 { text-align: center; } .buttonbw { width: 41px; margin: 2px; font-weight: bold; background: black; color: white; } .buttonwb { width: 41px; margin: 2px; font-weight: bold; background: white; color: black; } .buttontw { width: 41px; margin: 2px; font-weight: bold; background: #60b3c3; color: white; } .buttontw2 { margin: 2px; width: 92px; font-weight: bold; background: #60b3c3; color: white; } .disp { /* width: 100%; */ font-weight: bold; background: black; color: red; font-family: "Lucida Console"; font-size: 2em; padding: 2px; } </style> </head> <body> <h1>RPN Calculator Model n0</h1> <form id="calc"> <div class="disp">0</div> <table> <tr> <td colspan=2><input class="buttontw2" type="submit" name="button" value="ENTER" /></td> <td><input class="buttontw" type="submit" name="button" value="clx" /></td> <td><input class="buttontw" type="submit" name="button" value="clr" /></td> </tr> <tr> <td><input class="buttontw" type="submit" name="button" value="-" /></td> <td><input class="buttonwb" type="submit" name="button" value="7" /></td> <td><input class="buttonwb" type="submit" name="button" value="8" /></td> <td><input class="buttonwb" type="submit" name="button" value="9" /></td> </tr> <tr> <td><input class="buttontw" type="submit" name="button" value="+" /></td> <td><input class="buttonwb" type="submit" name="button" value="4" /></td> <td><input class="buttonwb" type="submit" name="button" value="5" /></td> <td><input class="buttonwb" type="submit" name="button" value="6" /></td> </tr> <tr> <td><input class="buttontw" type="submit" name="button" value="*" /></td> <td><input class="buttonwb" type="submit" name="button" value="1" /></td> <td><input class="buttonwb" type="submit" name="button" value="2" /></td> <td><input class="buttonwb" type="submit" name="button" value="3" /></td> </tr> <tr> <td><input class="buttontw" type="submit" name="button" value="/" /></td> <td><input class="buttontw" type="submit" name="button" value="mod" /></td> <td><input class="buttonwb" type="submit" name="button" value="0" /></td> <td><input class="buttontw" type="submit" name="button" value="neg" /></td> </tr> <tr> <td><input class="buttonbw" type="submit" name="button" value="enq" /></td> <td><input class="buttonbw" type="submit" name="button" value="swp" /></td> <td><input class="buttonbw" type="submit" name="button" value="sto" /></td> <td><input class="buttonbw" type="submit" name="button" value="rcl" /></td> </tr> </table> </form> <div id="inst"> <p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum doloe eu fugiat nulla pariatur. </p> </div> <div id="addl"> <p> Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </p> </div> </body> </html>