StudentCodingHUB

Use programming to create innovative things.
  • new post

    Friday, 15 November 2019

    Calculator


    !DOCTYPE html>
    <html>
    <head>
    <style>
    .btn{
    margin-left:170px;
    border:5px solid #6699ff;
    width:30%;
    padding:40px 40px;

    }
    button{
    margin:50px;
    padding:10px 10px;
    border-color:#66ffff;
    cursor:pointer;
    }
    input{
    border-radius:10px;
    height:20px;
    background-color:#ccffff;
    }
    </style>
    </head>
    <body>
    <h1 align="center"> Calculator </h1>
    <div class="btn">
    <form name="calculator">
    <table>
    <tr>
    <td colspan="4">
    <input type="text" name="display" id="display" disabled>
    </td>
    </tr>
    <tr>
    <td><input type="button" name="one" value="1" onclick="calculator.display.value += '1'"></td>
    <td><input type="button" name="two" value="2" onclick="calculator.display.value += '2'"></td>
    <td><input type="button" name="three" value="3" onclick="calculator.display.value += '3'"></td>
    <td><input type="button" class="operator" name="plus" value="+" onclick="calculator.display.value += '+'"></td>
    </tr>
    <tr>
    <td><input type="button" name="four" value="4" onclick="calculator.display.value += '4'"></td>
    <td><input type="button" name="five" value="5" onclick="calculator.display.value += '5'"></td>
    <td><input type="button" name="six" value="6" onclick="calculator.display.value += '6'"></td>
    <td><input type="button" class="operator" name="minus" value="-" onclick="calculator.display.value += '-'"></td>
    </tr>
    <tr>
    <td><input type="button" name="seven" value="7" onclick="calculator.display.value += '7'"></td>
    <td><input type="button" name="eight" value="8" onclick="calculator.display.value += '8'"></td>
    <td><input type="button" name="nine" value="9" onclick="calculator.display.value += '9'"></td>
    <td><input type="button" class="operator" name="times" value="x" onclick="calculator.display.value += '*'"></td>
    </tr>
    <tr>
    <td><input type="button" id="clear" name="clear" value="c" onclick="calculator.display.value = ''"></td>
    <td><input type="button" name="zero" value="0" onclick="calculator.display.value += '0'"></td>
    <td><input type="button" name="doit" value="=" onclick="calculator.display.value = eval(calculator.display.value)"></td>
    <td><input type="button" class="operator" name="div" value="/" onclick="calculator.display.value += '/'"></td>
    </tr>
    </table>
    </form>
    </div>
    </body>
    </html>

    No comments:

    Post a Comment