Skip to main content

Create an Awesome Calculator Using HTML, CSS and JavaScript - Creation Code



Calculator:

The first solid-state electronic calculator was created in the early 1960s. Pocket-sized devices became available in the 1970s, especially after the Intel 4004, the first microprocessor, was developed by Intel for the Japanese calculator company Busicom. They later became used commonly within the petroleum industry(oil and gas)


In this post, we will create a simple calculator for use on the web with the help of HTML, CSS, and javascript


HTML:

<!DOCTYPE html>
<html lang="en">

<head>
 <meta charset="UTF-8">
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <meta http-equiv="X-UA-Compatible" content="ie=edge">
 <title>calculator</title>
 <link rel="stylesheet" href="./style.css">
</head>

<body>
 <section class="calculator">
  <form>
   <input type="text" name="" id="" class="screen">
  </form>
  <div class="buttons">
   <!-- yellow -->
   <button type="button" class="btn btn-A" data-num=""></button>
   <button type="button" class="btn btn-A" data-num="/">/</button>
   <button type="button" class="btn btn-A" data-num="-">-</button>
   <button type="button" class="btn btn-A" data-num="+">+</button>
   <!-- grey buttons -->
   <button type="button" class="btn btn-B" data-num=".">.</button>
   <button type="button" class="btn btn-B" data-num="9">9</button>
   <button type="button" class="btn btn-B" data-num="8">8</button>
   <button type="button" class="btn btn-B" data-num="7">7</button>
   <button type="button" class="btn btn-B" data-num="6">6</button>
   <button type="button" class="btn btn-B" data-num="5">5</button>
   <button type="button" class="btn btn-B" data-num="4">4</button>
   <button type="button" class="btn btn-B" data-num="3">3</button>
   <button type="button" class="btn btn-B" data-num="2">2</button>
   <button type="button" class="btn btn-B" data-num="1">1</button>
   <button type="button" class="btn btn-B" data-num="0">0</button>
   <button type="button" class="btn-C btn-B">=</button>
   <button type="button" class="btn-D btn-B">C</button>
  </div>
 </section>
 <script src="./js/cal.js"></script>
</body>
</html>


CSS:

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   }
   
   body{
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
   
   }
   
   .calculator{
    flex: 0 0 95%;
   }
   .screen{
    width: 100%;
    font-size: 7rem;
    padding: 0.5rem;
    background: white;
    color: black;
    border:none;
   }
   
   .buttons{
    display: flex;
    flex-wrap: wrap;
   }
   
   button{
    flex:0 0 25%;
    border: 1px solid black;
    padding: 0.25rem 0;
   }
   button:hover{
    background: white;
   }
   .btn-A{
    background: green;
    color: black;
   }
   .btn-B{
    background: red;
   }
   .btn,.btn-C,.btn-D{
    font-size: 4rem;
   }
   .btn-C{
    background: yellow;
   }
   .btn-D{
    background: red;
   }

JavaScript:

(function(){
  
    let screen = document.querySelector('.screen');
    let buttons = document.querySelectorAll('.btn');
    let clear = document.querySelector('.btn-D');
    let equal = document.querySelector('.btn-C');
    // numbers that are clicked
    buttons.forEach(function(button){
      button.addEventListener('click', function(e){
        let value = e.target.dataset.num;
        screen.value += value;
      })
    });
    
    equal.addEventListener('click', function(e){
      if(screen.value === ''){
        screen.value = 'Please Enter a Value';
      } else {
        let answer = eval(screen.value);
        screen.value = answer;
      }
    })
    
    clear.addEventListener('click', function(e){
      screen.value = '';
    })
   
  })();

Follow my socials:

Youtube:https://www.youtube.com/channel/UCU1qNFntn7dCi9uqyvrGKOg

Instagram: https://www.instagram.com/python.math/

Twitter:https://twitter.com/Pritish369


For any question or coding discussion, you can join my discord or telegram:

Discord:https://discord.gg/be7MmSuV

Telegram:https://t.me/Python_Math_Community



Comments

Popular posts from this blog

Draw Minecraft Charater in Python

  Minecraft  is a  sandbox video game  developed by the Swedish video game developer  Mojang Studios . The game was created by  Markus "Notch" Persson  in the  Java programming language . Following several early private testing versions, it was first made public in May 2009 before fully releasing in November 2011, with  Jens Bergensten  then taking over development.  Minecraft  has since been ported to several other platforms and is the  best-selling video game of all time , with over 238 million copies sold and nearly 140 million  monthly active users  as of 2021 . We gonna build a character of Minecraft using our creativity and coding skills so let's drive into the code: Code: import turtle as t def eye ( r , a ):     t . fillcolor ( 'brown' )     t . begin_fill ()     t . circle ( r , a )     t . end_fill () t . begin_fill () t . fillcolor (...

How To Draw BMW Logo - In Python

 I know I don't need to introduce BMW as it is a very popular luxury car. Today we gonna draw the BMW logo in python. I know that you can draw it using a pencil and other tools like AutoCAD etc. But we are programmers we talk with computers so let's tell our computer to draw this logo for use with the help of python. Module The only module we will use is that turtle Code: import turtle as t t.begin_fill() t.fillcolor( '#008ac9' ) for i in range ( 50 ):     t.forward( 4 )     t.left( 2 ) t.right(- 80 ) t.forward( 116 ) t.right(- 90 ) t.forward( 132 ) t.end_fill() t.penup() t.pendown() t.right( 90 ) for i in range ( 50 ):     t.forward( 4 )     t.left(- 2 ) t.right( 80 ) t.forward( 116 ) t.forward(- 116 ) t.right( 90 ) t.begin_fill() t.fillcolor( '#008ac9' ) for j in range ( 45 ):     t.forward(- 4 )     t.left(- 2 ) t.right(- 90 ) t.forward( 116 ) t.end_fill() t.right( 180 ) t.forward( 116 ) t.right( 90 ) for i in ...

Draw spiderman logo using python | spiderman logo with python turtle

Well like me I think you are also a fan of spiderman. We also do coding so let's create our favorite superhero in python and have some fun with it Module: We only use one simple module in this project that is Turtle Code: from turtle import * bgcolor ( 'red' ) pensize ( 10 ) fillcolor ( 'black' ) begin_fill () circle ( 20 ) end_fill () penup () right ( 90 ) forward ( 5 ) pendown () fillcolor ( 'black' ) begin_fill () right ( 60 ) for i in range ( 6 ):     forward ( 50 )     left ( 60 ) end_fill () penup () left ( 150 ) forward ( 39 ) left ( 90 ) forward ( 9 ) pendown () forward ( 25 ) right ( 60 ) forward ( 15 ) left ( 60 ) forward ( 25 ) penup () backward ( 25 ) right ( 60 ) back ( 15 ) left ( 60 ) backward ( 25 ) left ( 60 ) pendown () backward ( 35 ) left ( 120 ) forward ( 80 ) penup () left ( 40 ) forward ( 30 ) left ( 140 ) pendown () forward ( 110 ) left ( 60 ) forward ( 40 ) right ( 60 ) forward ( 7 ) right ( 60 ) forward ( 20 ) left ( 60 ) forw...