How to make calculator in Notpad [ hindi ]
Q.How to make calculator in Notpad welcome to bramastra trick .com blog youtube link= https://www.youtube.com/channel/UCOuAOlsSssYVvEaoIflH5Rw dosto aaj ke iss post me mai btaunga ki calculator kaise banaye Notepad ki madad se Code- <idoctype html> <html lang="en-us"> <head> <meta charset='utf-8'> <title> calculator </title> <style> body{ width:300px; height:450px; background-color:white; border-top:40px groove red ; border-bottom:40px ridge #1DD622 ; margin:0 auto; border-radius:40px; box-shadow:0px 0px 10px #323232; } input[type=text]{ width:95%; height:30px; margin:5px; } input[type=button]{ width:66px; height:60px; margin:2.5px; } </style> </head> <body> <div> <form name="rr"> <input type="text" name="result"> <br> <br> <input type=...