GithubHelp home page GithubHelp logo

codsoft's Introduction

index.html

<html>
    <head>
        <meta name="viewport" content="width=device-width,initial-scale=1.0">
        <title>calculator</title>
        <link rel="stylesheet" href="style.css">
    </head>
    <body>
        <div class="container">
            <div class="calculator">
                <form>
                    <div class="display">
                        <input type="text" name="display">
                    </div>
                    <div>
                        <input type="button" value="AC" onclick="display.value ='' " class="opration" >
                        <input type="button" value="DE" onclick="display.value = display.value.toString().slice (0,-1)" class="opration">
                        <input type="button" value="." onclick="display.value +='.' " class="opration">
                        <input type="button" value="/" onclick="display.value +='/' " class="opration">

                    </div>
                    <div>
                        <input type="button" value="7" onclick="display.value +='7' ">
                        <input type="button" value="8" onclick="display.value +='8' ">
                        <input type="button" value="9" onclick="display.value +='9' ">
                        <input type="button" value="*" onclick="display.value +='*' " class="opration">

                    </div>
                    <div>
                        <input type="button" value="4" onclick="display.value +='4' ">
                        <input type="button" value="5" onclick="display.value +='5' ">
                        <input type="button" value="6" onclick="display.value +='6' ">
                        <input type="button" value="-" onclick="display.value +='-' " class="opration">

                    </div>
                    <div>
                        <input type="button" value="1" onclick="display.value +='1' ">
                        <input type="button" value="2" onclick="display.value +='2' ">
                        <input type="button" value="3" onclick="display.value +='3' ">
                        <input type="button" value="+" onclick="display.value +='+' " class="opration">

                    </div>
                    <div>
                        <input type="button" value="00" onclick="display.value +='00' ">
                        <input type="button" value="0" onclick="display.value +='0' ">
                        <input type="button" value="=" onclick="display.value=eval(display.value)"class="equal">
                    </div>
                </form>
            </div>
        </div>
    </body>
</html>

style.css

*{
    margin:0;
    padding:0;
    font-family:'poppins',sans-serif;
    box-sizing:border-box;
}
.container
{
    width:100%;
    height:100vh;
    background: gray;
    display: flex;
    align-items: center;
    justify-content: center;
}
.calculator
{
    background: #3a4452;
    padding:20px;
    border-radius: 10px;;
}
.calculator form input{
    border:0;
    outline:0;
    width:60px;
    height:60px;
    border-radius: 10px;
    box-shadow: -8px -8px 15px rgba(255,255,255,0.1),5px 5px 15px rgba(0,0,0,0.2);
    background:transparent;
    font-size: 20px;
    color: #fff;
    cursor:pointer;
    margin:10px;
}
form .display
{
    display:flex;
    justify-content: flex-end;
    margin:20px 0;
}
form .display input
{
    text-align: right;
    flex:1;
    font-size: 45px;
    box-shadow:none;
}
form input.equal
{
    width: 145px;
}
form input.opration
{
    color:#33ffd8;
}

###OUTPUT:

![Screenshot (29)](https://github.com/Arini22009085/codsoft/assets/119643315/e76f4d08-064e-425a-b773-866fa5ebd636)
![Screenshot (30)](https://github.com/Arini22009085/codsoft/assets/119643315/4226292d-cdd7-4ee2-a500-d8b9ffadb789)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.