-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtax.html
32 lines (28 loc) · 1.18 KB
/
tax.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
<!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 src="tax.js"></script>
</head>
<body>
<<h1>Personal Income Tax APP</h1>
<div class="tax-form" >
<form>
<label for="fullname">full name:</label><br>
<input type="text" id="full-name" name="fullname" value="John Doe"><br>
<label for="tin">Enter your tax identification number::</label><br>
<input type="number" id="tin" name="tin" value="123456"><br>
<label for="gross-income">Enter your Gross Income:</label><br>
<input type="number" id="gross-income" name="gross-income" value="25000"><br>
<label for="children">number of children: </label><br>
<input type="number" id="children" name="children" value="2"><br>
<label for="relatives">number of dependent relatives:</label><br>
<input type="number" id="relatives" name="relatives" value="2"><br>
<button id="computeTax" >computeTax</button>
<div id="result"></div>
</form>
</div>
</body>
</html>