Internet Of Things

<!DOCTYPE html>
<html>

<head>
    <title>My Calculator</title>
    <link rel="stylesheet" type="text/css" href="style.css" />
</head>

<body>
    <center>
         <form name="calci">
            <div id="container">
               
                <div id="auther">
                    <b><h3>PHANI  KUMAR</h3></b>
                </div>
               
                <div id="box"></div>
               
                <div id="output">
                       <h3 style="color: #33ff00; font-size: 15px; margin-left: 20px; text-align: left;">
                            <b>Scientific Calculator</b>
                        </h3>
                        <input class="spl" id="display" name="text" type="text" /><br />
                </div>
               
                <div id="input">
                            <input id="buttons1" name="" onclick="calci.text.value +='&amp;#8747'" type="button" value="&amp;#8747" />
                            <input id="buttons1" name="" onclick="calci.text.value +='&amp;#186'" type="button" value="&amp;#186" />
                            <input id="buttons1" name="" onclick="calci.text.value +='&amp;#178'" type="button" value="&amp;#178" />
                            <input id="buttons1" name="" onclick="calci.text.value +='&amp;#179'" type="button" value="&amp;#179" />
                            <input id="buttons1" name="" onclick="calci.text.value +='log'" type="button" value="log" />
                            <input id="buttons1" name="" onclick="calci.text.value +='ln'" type="button" value="ln" /><br />
                            <input id="buttons1" name="" onclick="calci.text.value +='&amp;#402'" type="button" value="&amp;#402" />
                            <input id="buttons1" name="" onclick="calci.text.value +='&amp;#710'" type="button" value="&amp;#710" />
                            <input id="buttons1" name="" onclick="calci.text.value +='hyp'" type="button" value="hyp" />
                            <input id="buttons1" name="" onclick="calci.text.value +='sin('" type="button" value="sin" />
                            <input id="buttons1" name="" onclick="calci.text.value +='cos('" type="button" value="cos" />
                            <input id="buttons1" name="" onclick="calci.text.value +='tan('" type="button" value="tan" /><br />
                            <input id="buttons1" name="" onclick="calci.text.value +='&amp;#8706'" type="button" value="&amp;#8706" />
                            <input id="buttons1" name="" onclick="calci.text.value +='&amp;#8721'" type="button" value="&amp;#8721" />
                            <input id="buttons1" name="rightbra" onclick="calci.text.value +='('" type="button" value="(" />
                            <input id="buttons1" name="leftbra" onclick="calci.text.value +=')'" type="button" value=")" />
                            <input id="buttons1" name="" onclick="calci.text.value +='&amp;#8764'" type="button" value="&amp;#8764" />
                            <input id="buttons1" name="sqrt" onclick="calci.text.value +='&amp;#8730'" type="button" value="&amp;#8730" /><br />
                            <input id="buttons" name="seven" onclick="calci.text.value +='7'" type="button" value="7" />
                            <input id="buttons" name="eight" onclick="calci.text.value +='8'" type="button" value="8" />
                            <input id="buttons" name="nine" onclick="calci.text.value +='9'" type="button" value="9" />
                            <input id="buttons" class="spl" name="delete" onclick="calci.text.value= ' '" type="button" value="DEL" />
                            <input id="buttons" class="spl" name="" onclick="" type="button" value="AC" /><br />
                            <input id="buttons" name="four" onclick="calci.text.value +='4'" type="button" value="4" />
                            <input id="buttons" name="five" onclick="calci.text.value +='5'" type="button" value="5" />
                            <input id="buttons" name="six" onclick="calci.text.value +='6'" type="button" value="6" />
                            <input id="buttons" name="into" onclick="calci.text.value +='*'" type="button" value="&amp;#215" />
                            <input id="buttons" name="divide" onclick="calci.text.value +='/'" type="button" value="&amp;divide" /><br />
                            <input id="buttons" name="one" onclick="calci.text.value +='1'" type="button" value="1" />
                            <input id="buttons" name="two" onclick="calci.text.value +='2'" type="button" value="2" />
                            <input id="buttons" name="three" onclick="calci.text.value +='3'" type="button" value="3" />
                            <input id="buttons" name="plus" onclick="calci.text.value +='+'" type="button" value="+" />
                            <input id="buttons" name="minus" onclick="calci.text.value +='-'" type="button" value="-" /><br />
                            <input id="buttons" name="zero" onclick="calci.text.value +='0'" type="button" value="0" />
                            <input id="buttons" name="dot" onclick="calci.text.value +='.'" type="button" value="." />
                            <input id="buttons" name="pi" onclick="calci.text.value +=Math.PI" type="button" value="pi" />
                            <input id="buttons" name="ans" onclick="calci.text.value=eval(calci.text.value)" type="button" value="Ans" />
                            <input id="buttons" name="result" onclick="calci.text.value=eval(calci.text.value)" type="button" value="=" />
                </div>
            </div>
        </form>
    </center>
</body>
</html>

simple calculater

PHANI KUMAR

BHARGAVI








Comments