1+ <!DOCTYPE html>
12< html lang ="en ">
2- < head >
3- < meta charset ="UTF-8 " />
4- < meta http-equiv ="X-UA-Compatible " content ="IE=edge " />
5- < meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
6- < title > Simple Calculator</ title >
7- < link rel ="stylesheet " href ="style.css " />
8- </ head >
9- < body >
10- < div class ="main ">
11- < div class ="inputs ">
12- < h1 class ="result "> Result</ h1 >
13- < select id ="selectOp ">
14- < option value ="plus "> +</ option >
15- < option value ="min "> -</ option >
16- < option value ="dev "> /</ option >
17- < option value ="multi "> *</ option >
18- </ select >
19- < input type ="number " class ="num1 " placeholder ="Number 1 " />
20- < input type ="number " class ="num2 " placeholder ="Number 2 " />
21- </ div >
22- < div class ="submitBtn ">
23- < button id ="btn "> Submit</ button >
24- </ div >
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6+ < link rel ="stylesheet " href ="style.css " />
7+ < title > Simple Calculator</ title >
8+ </ head >
9+ < body >
10+
11+ < div class ="main ">
12+ < div class ="inputs ">
13+ < h1 class ="result "> Result</ h1 >
14+ < select id ="selectOp ">
15+ < option value ="plus "> +</ option >
16+ < option value ="min "> -</ option >
17+ < option value ="dev "> /</ option >
18+ < option value ="multi "> *</ option >
19+ </ select >
20+ < input type ="number " class ="num1 " placeholder ="Number 1 " />
21+ < input type ="number " class ="num2 " placeholder ="Number 2 " />
22+ </ div >
23+ < div class ="submitBtn ">
24+ < button id ="btn "> Submit</ button >
2525 </ div >
26+ </ div >
2627
27- < script src ="app.js "> </ script >
28- </ body >
29- </ html >
28+ < script src ="app.js "> </ script >
29+
30+ </ body >
31+ </ html >
0 commit comments