-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 2.33 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
42
43
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Smart Tax Calculator - tax brackets, deductions, and allowances</title>
<!-- Meta Tags for Smart Tax Calculator -->
<meta name="title" content="Smart Tax Calculator - Nepal Taxation System 2080/81">
<meta name="description"
content="Smart Tax Calculator computes personal income tax based on Nepal's taxation system (Budget 2080/81). Includes tax brackets, deductions, and allowances for accurate calculations tailored to married, single, male, and female taxpayers.">
<meta name="keywords"
content="Tax Calculator, Nepal Taxation, Income Tax Calculator, Tax Brackets, Deductions, Allowances, Nepal Budget 2080/81">
<meta name="author" content="Smart Tax Calculator Team">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<!-- Open Graph Meta Tags for Social Media -->
<meta property="og:title" content="Smart Tax Calculator - Nepal Taxation System 2080/81">
<meta property="og:description"
content="Compute personal income tax with Smart Tax Calculator, based on Nepal's taxation system (Budget 2080/81). Includes tax brackets, deductions, and allowances for accurate results.">
<meta property="og:image" content="https://utdevnp.github.io/SmartTax/icon.png"> <!-- Replace with the actual URL to the image -->
<meta property="og:url" content="https://utdevnp.github.io/SmartTax/"> <!-- Replace with the actual website URL -->
<meta property="og:type" content="website">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Smart Tax Calculator - Nepal Taxation System 2080/81">
<meta name="twitter:description"
content="Compute personal income tax with Smart Tax Calculator, based on Nepal's taxation system (Budget 2080/81). Accurate calculations for various taxpayer categories.">
<meta name="twitter:image" content="https://utdevnp.github.io/SmartTax/icon.png"> <!-- Replace with the actual URL to the image -->
<base href="/SmartTax/" />
<link href="./output.css" rel="stylesheet">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>