11<!DOCTYPE html>
22< html lang ="en ">
3- < head >
4- < meta charset ="UTF-8 ">
3+ < head >
4+ < meta charset ="UTF-8 " />
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
56 < link
6- rel ="stylesheet "
7- href ="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css "
8- integrity ="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A== "
9- crossorigin ="anonymous "
10- referrerpolicy ="no-referrer "
7+ rel ="stylesheet "
8+ href ="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css "
9+ integrity ="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A== "
10+ crossorigin ="anonymous "
11+ referrerpolicy ="no-referrer "
1112 />
12- < title > Title</ title >
13- </ head >
14- < body >
13+ < link rel ="stylesheet " href ="css/style.css ">
14+ < title > Calculator</ title >
15+ </ head >
16+ < body >
17+ < section class ="calculator ">
18+ < div class ="screen ">
19+ < p id ="screen-txt "> </ p >
20+ </ div >
21+ < div class ="keys ">
22+ < button class ="num " id ="1 "> 1</ button >
23+ < button class ="num " id ="2 "> 2</ button >
24+ < button class ="num " id ="3 "> 3</ button >
25+ < button class ="num " id ="4 "> 4</ button >
26+ < button class ="num " id ="5 "> 5</ button >
27+ < button class ="num " id ="6 "> 6</ button >
28+ < button class ="num " id ="7 "> 7</ button >
29+ < button class ="num " id ="8 "> 8</ button >
30+ < button class ="num " id ="9 "> 9</ button >
31+ < button class ="num " id ="0 "> 0</ button >
32+ < button id ="plus "> +</ button >
33+ < button id ="minus "> -</ button >
34+ < button id ="Multiply "> *</ button >
35+ < button id ="divide "> /</ button >
36+ < button id ="point "> .</ button >
37+ < button id ="equal "> =</ button >
38+ < button id ="clear "> Clear</ button >
39+ </ div >
40+ </ section >
1541
16- </ body >
17- </ html >
42+ < script src ="js/script.js "> </ script >
43+ </ body >
44+ </ html >
0 commit comments