-
Notifications
You must be signed in to change notification settings - Fork 0
/
Property.html
145 lines (131 loc) · 4.96 KB
/
Property.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<html>
<head>
<title>
Estate
</title>
</head>
<link rel="stylesheet" type="text/css" href="prop.css">
<link rel="icon" href="img/log-color.png">
<link href="https://fonts.googleapis.com/css?family=Grenze|Roboto+Mono&display=swap" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<body>
<header class="container">
<a href="index.html" class="site-logo">
<img src="img/logo.png" alt="">
</a>
<nav>
<ul>
<li> <a href="index.html">Home</a></li>
<li> <a href="About.html">AboutUs</a></li>
<li> <a href="Property.html">Property</a></li>
<li> <a href="News.html">News</a></li>
</ul> </nav>
</header>
<section class="income">
<center><h1>Basics of House Property</h1></center>
<select name="" id="">
<option value="a">a. Self-Occupied House Property</option>
<option value="b">b. Let Out House Property</option>
<option value="c">c. Inherited Property</option>
</select>
<textarea name="display" id="" cols="30" rows="10"></textarea>
</section>
<!-- table of state income -->
<section class="state">
<center><h1>Workings for Income from House Property
</h1></center>
<table class="table table-sm table-bordered table-dark">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Particulars</th>
<th scope="col">AY 2017-18</th>
<th scope="col">AY 2018-19</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Property A</td>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row">2</th>
<td>Annual Value</td>
<td>Nil</td>
<td>Nil</td>
</tr>
<tr>
<th scope="row">3</th>
<td>(-) Interest on housing loan restricted to </td>
<td>2,00,000</td>
<td>2,00,000</td>
</tr>
<tr>
<th scope="row">4</th>
<td>Loss from House Property(A) </td>
<td>(2,00,000)</td>
<td>(2,00,000)</td>
</tr>
<tr>
<th scope="row">5</th>
<td>Property B</td>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row">6</th>
<td>Net income from House Property after all deductions (B)</td>
<td>60,000</td>
<td>60,000</td>
</tr>
<tr>
<th scope="row">7</th>
<td>Property C
</td>
<td></td>
<td></td>
</tr>
<tr>
<th scope="row">8</th>
<td>Annual Value</td>
<td>5,00,000</td>
<td>5,00,000</td>
</tr>
<tr>
<th scope="row">9</th>
<td>Less : Standard Deduction</td>
<td>1,50,000</td>
<td>1,50,000</td>
</tr>
<tr>
<th scope="row">10</th>
<td>Less : Interest on loan </td>
<td>6,50,000</td>
<td>6,50,000</td>
</tr>
<tr>
<th scope="row">11</th>
<td>Loss from House Property (C)</td>
<td>(3,00,000)</td>
<td>(3,00,000)</td>
</tr>
<tr>
<th scope="row">12</th>
<td>Total income from house property (A+B+C)</td>
<td>4,40,000)</td>
<td>Restricted to (2,00,000). Balance loss of Rs 2.4 lakhs can be carried forward for the next 8 AYs</td>
</tr>
</tbody>
</table>
</section>
<!-- for bootstrap -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<script src="jquery-3.5.1.min.js"></script> <!-- for jquery library -->
<script src="prop.js"></script> <!-- for jquery selected index etc... -->
</body>
</html>