I want to build a tool for users to calculate the size of the rainwater storage tank appropriate for them. I can incorporate some detail if they do things like plug in their z
There are plug ins maybe something similar to this: https://wordpress.org/plugins/pricing-table-dynamite/
I don't think that one will work for me, but I'll do some research on similar types of plugins and maybe something like that will do the trick. Thanks for the ideas.
See more comments
I want to create & add a calculator in my website. tips?
I want to build a tool for users to calculate the size of the rainwater storage tank appropriate for them. I can incorporate some detail if they do things like plug in their z
This is untested by me but I got it from wiki how by searching for html calculator.
<html>
<head>
<title>HTML Calculator</title>
</head>
<body bgcolor= "#000000" text= "gold">
<form name="calculator" >
<input type="button" value="1">
<input type="button" value="2">
<input type="button" value="3">
<input type="button" value="+">
<input type="button" value="4">
<input type="button" value="5">
<input type="button" value="6">
<input type="button" value="-">
<input type="button" value="7">
<input type="button" value="8">
<input type="button" value="9">
<input type="button" value="*">
<input type="button" value="/">
<input type="button" value="0">
<input type="reset" value="Reset">
<input type="button" value="=">
Solution is <input type="textfield" name="ans" value="">
</form>
</body>
</html>
There are plug ins maybe something similar to this: https://wordpress.org/plugins/pricing-table-dynamite/
I don't think that one will work for me, but I'll do some research on similar types of plugins and maybe something like that will do the trick. Thanks for the ideas.
See more comments
This is untested by me but I got it from wiki how by searching for html calculator.
<html>
<head>
<title>HTML Calculator</title>
</head>
<body bgcolor= "#000000" text= "gold">
<form name="calculator" >
<input type="button" value="1">
<input type="button" value="2">
<input type="button" value="3">
<input type="button" value="+">
<input type="button" value="4">
<input type="button" value="5">
<input type="button" value="6">
<input type="button" value="-">
<input type="button" value="7">
<input type="button" value="8">
<input type="button" value="9">
<input type="button" value="*">
<input type="button" value="/">
<input type="button" value="0">
<input type="reset" value="Reset">
<input type="button" value="=">
Solution is <input type="textfield" name="ans" value="">
</form>
</body>
</html>
thanks! I'll give it a try and let you know how it works. Appreciate it.