-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.52 KB
/
index.html
File metadata and controls
43 lines (43 loc) · 1.52 KB
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
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sales Tax Calculator</title>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<form action="" id="form">
<fieldset id="form_fieldset">
<h1>Sales Tax Calculator</h1>
<p>Enter Subtotal and Tax Rate and click "Calculate"</p>
<div id="form_div">
<label for="sub_total">Sub total<span>*</span> : </label>
<input type="text" maxlength="7" id="sub_total" />
<br />
<br />
<label for="tax_rate">Tax Rate<span>*</span> : </label>
<input type="text" maxlength="5" id="tax_rate" />
<br />
<br />
<label for="sales_tax">Sales Tax : </label>
<input type="text" id="sales_tax" disabled />
<br />
<br />
<label for="total">Total : </label>
<input type="text" id="total" disabled />
<br />
<br />
<button id="clear" type="button">Clear</button>
<button id="calculate" type="button">Calculate</button>
</div>
<p>© Alay Patel
[ID n01650048]</p>
<a href="./webpages/changeCalc.html">Change Calculator</a>
<a href="./webpages/taxCalc.html">Income Tax Calculator</a>
<a href="./webpages/reservationRequest.html">Reservation Request</a>
</fieldset>
</form>
<script src="./js/script.js"></script>
</body>
</html>