-
-
Notifications
You must be signed in to change notification settings - Fork 133
/
index.html
41 lines (36 loc) · 1.29 KB
/
index.html
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
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./Assets/css/style.css">
<title>VAT Calculator</title>
</head>
<body>
<div class="vat-calc">
<h2>VAT Calculator</h2>
<div class="main-wrapper">
<form action="">
<div>
<label for="net-price">Net Price</label><br/>
<input type="number" name="" id="net-price" min="0.00" placeholder="0.00" /> </div>
<div>
<label for="vat-rate">VAT Rate (%) </label><br/>
<input type="number" name="" id="vat-rate" min="0.00" placeholder="0.00" /> </div>
<div>
<label for="vat-added">VAT Added </label><br/>
<input type="number" min="0.00" name="" id="vat-added" placeholder="0.00" disabled=true /> </div>
<div>
<label for="inc-amount">VAT Inclusive Price </label><br/>
<input type="number" min="0.00" name="" id="inc-amount" placeholder="0.00" disabled=true /> </div>
</form>
</div>
<div class="button_group">
<button type="button" class="main-btn" id="calc-btn"> Calculate</button>
<button type="button" class="main-btn" id="reset-btn">Reset</button>
</div>
</div>
<script src="./script/script.js"></script>
</body>
</html>