This commit is contained in:
2014-11-13 07:50:35 -05:00
parent 33413c468c
commit 072b3dc0c9
4 changed files with 7 additions and 13 deletions

View File

@@ -1,15 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab' rel='stylesheet' type='text/css'>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="js/jquery.js"></script>
<script src="js/two.min.js"></script>
<script src="js/randomColor.js"></script>
<style type="text/css">
.eq,#result,p {
.eq, #result, p {
display: inline;
margin:0px;
padding:0px;
@@ -69,7 +69,7 @@
<div id="front">
<h2>Reverse Polish Notation Calculator</h2>
<p>*&nbsp;&nbsp;For Single number operations, only use first field</p>
<form id="calculator" oninpt="Calculate()">
<form id="calculator" oninput="Calculate()">
<input name="a" type="number" value="0"/>
<input name="b" type="number" value="0"/>
<select name="selector" onchange="Calculate()">
@@ -90,6 +90,8 @@
<output id="result" name="c" for="x y">0</output>
</form>
<h4> &copy;&nbsp;Paul Walko&nbsp;2014</h4>
<a href="http://www.w3.org/html/logo/"><img src="http://www.w3.org/html/logo/badge/html5-badge-h-css3-semantics.png" width="165" height="64" alt="HTML5 Powered with CSS3 / Styling, and Semantics" title="HTML5 Powered with CSS3 / Styling, and Semantics">
</a>
</div>
<script type="text/javascript" src="js/background2.js"></script>
</body>