<html> <head><title>Calculator</title> <style> a{ color:black } a:hover { font-size:104%; color:#0e30add1; } </style> </head> <body style=" background: #a29e9e; "> <div class="container" style=" margin-left: 20px; margin-top: 25px; "> <div class="head"> <h1> <u style="color: white; font-family: -webkit-pictograph;"> <center>Calculator</center></u></h1></div> <br><br> <form oninput="x.value=parseInt(a.value)+parseInt(b.value)+parseInt(c.value)"> <input type="number" id="a" value="0" style=" ...
Home/calculator