forked from Pankaj-Str/JavaScript-Tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtax.html
More file actions
30 lines (24 loc) · 742 Bytes
/
tax.html
File metadata and controls
30 lines (24 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script>
function gettax(price,gst){
gst_amount = price*gst/100
final_amount = price + gst_amount
document.write("<hr>")
document.write("Price = "+price+"<br>")
document.write("GST = "+gst+"<br>")
document.write("Total GST Amount = "+gst_amount+"<br>")
document.write("MRP - include GST = "+final_amount+"<br>")
}
gettax(1200,18)
gettax(7800,9)
gettax(15000,2)
</script>
</head>
<body>
</body>
</html>