Posts

Showing posts from November, 2021

Calculator.com

  Calculator CALCULATOR

calculator use html with source code

 Source code  Share with your friends  <html> <head> <title> Calculator </title> <style type="text/css"> *{ margin:0px; padding:0px; } .wrap{ width:215px; margin:10px 50px; background: ; border:10px solid lightblue; padding:5px; border-radius: 10px; box-shadow:3px 2px 20px 0px #000; } .disp{ width:100%; padding:10px; font-size: 22px; font-weight:bold; border-radius: 10px; border:3px solid #000; box-shadow: 3px 3px 5px 0px; font-size:30px; margin-bottom:30px; } .button{ background: rgb(255,70,255); border:none; width:50px; height:50px; text-align:center; margin:0px 0px; font-size:22px; border-radius: 100%; } .del{ width:100%; height: 40px; background: rgb(69,50,255); border:none; outline:none; margin: 0px px; font-size: 25px; text-align:center; margin: 5px 0px; border-radius: 10px; } .button2{ background:rgb(255,155,76); width:50px; height: 50px; border:none; outline:none; margin: 3px 0px; font-size:22px; border-radius:100%; } .eql{ width:50px...