Posts

Showing posts with the label How to make calculator using HTML

HOW TO MAKE CALCULATOR USING HTML CSS JAVASCRIPT ?

Image
 HOW TO MAKE CALCULATOR USING       HTML CSS JAVASCRIPT ? HELLO TODAY I MAKE CALCULATOR  USE TO HTML CSS JAVA SCRIPT LET'S START  HTML CODE <!DOCTYPE html > <html lang = "en" >     <head>         <link rel = "stylesheet" href = "style.css" >         <title> Calculator </title>     </head>     <body>         <div class = "main" >             <input type = "text" id = "res" placeholder = "0" >             <div class = "btn" >                 <input type = "button" value = "C" onclick = " Clear()" >                 <input type = "button" value = "%" onclick = " Solve( '%' )" >                 <in...