1
1
<!DOCTYPE html>
2
2
< html lang ="en ">
3
+
3
4
< head >
4
- < meta charset ="UTF-8 ">
5
- < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6
- < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
7
- < link rel ="stylesheet " href ="style.css ">
8
- < title > VAT Calculator</ title >
5
+ < meta charset ="UTF-8 ">
6
+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
7
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
8
+ < link rel ="stylesheet " href ="style.css ">
9
+ < title > VAT Calculator</ title >
9
10
</ head >
10
- < body >
11
- < div class ="vat-calc ">
12
- < h2 > VAT Calculator</ h2 >
13
-
14
- < div class ="main-wrapper ">
15
- < form action ="">
16
- < div >
17
- < label for ="net-price "> Net Price</ label >
18
- < input type ="number " name ="" id ="net-price " min ="0.00 " placeholder ="0.00 " />
19
- </ div >
20
- < div >
21
- < label for ="vat-rate "> VAT Rate (%) </ label >
22
- < input type ="number " name ="" id ="vat-rate " min ="0.00 " placeholder ="0.00 " />
23
- </ div >
24
-
25
- < div >
26
- < label for ="vat-added "> VAT Added </ label >
27
- < input type ="number " min ="0.00 " name ="" id ="vat-added " placeholder ="0.00 " disabled =true />
28
- </ div >
29
-
30
- < div >
31
- < label for ="inc-amount "> VAT Inclusive Price </ label >
32
- < input type ="number " min ="0.00 " name ="" id ="inc-amount " placeholder ="0.00 " disabled =true />
33
- </ div >
34
-
35
-
36
- </ form >
37
- </ div >
38
11
39
- < div class ="button_group ">
40
-
41
- < button type ="button " class ="main-btn " id ="calc-btn "> Calculate</ button >
42
-
43
- < button type ="button " class ="main-btn " id ="reset-btn "> Reset</ button >
44
- </ div >
45
-
46
-
47
- </ div >
48
-
49
- < script src ="script.js "> </ script >
12
+ < body >
13
+ < div class ="vat-calc ">
14
+ < h2 > VAT Calculator</ h2 >
15
+ < div class ="main-wrapper ">
16
+ < form action ="">
17
+ < div >
18
+ < label for ="net-price "> Net Price</ label >
19
+ < input type ="number " name ="" id ="net-price " min ="0.00 " placeholder ="0.00 " /> </ div >
20
+ < div >
21
+ < label for ="vat-rate "> VAT Rate (%) </ label >
22
+ < input type ="number " name ="" id ="vat-rate " min ="0.00 " placeholder ="0.00 " /> </ div >
23
+ < div >
24
+ < label for ="vat-added "> VAT Added </ label >
25
+ < input type ="number " min ="0.00 " name ="" id ="vat-added " placeholder ="0.00 " disabled =true /> </ div >
26
+ < div >
27
+ < label for ="inc-amount "> VAT Inclusive Price </ label >
28
+ < input type ="number " min ="0.00 " name ="" id ="inc-amount " placeholder ="0.00 " disabled =true /> </ div >
29
+ </ form >
30
+ </ div >
31
+ < div class ="button_group ">
32
+ < button type ="button " class ="main-btn " id ="calc-btn "> Calculate</ button >
33
+ < button type ="button " class ="main-btn " id ="reset-btn "> Reset</ button >
34
+ </ div >
35
+ </ div >
36
+ < script src ="script.js "> </ script >
50
37
</ body >
51
- </ html >
38
+
39
+ </ html >
0 commit comments