plsss answer fast...(d) question number
Attachments:
Answers
Answered by
0
Answer:
Add the attribute cellpadding="10" and cellspacing="10" to the <table> tag
cellpadding does the first job, cellspacing does the 2nd.
archanajha098:
i said d not e
Answered by
0
<html>
<head><title>Income Tax Slabs 2017-18</title></head>
<body>
<table bgcolor="pink" border=1 cellspacing=10 cellpadding=10>
<tr>
<th colspan=4>
INCOME TAX SLABS 2017-18
</th>
</tr>
<tr>
<td rowspan=5><img src="d:\it.jpg"></td>
<td>S.No.</td>
<td>Income Range</td>
<td>Tax%</td>
</tr>
<tr>
<td>1</td>
<td>0 – 250000</td>
<td>NIL</td>
</tr>
<tr>
<td>2</td>
<td>250001 - 500000</td>
<td>10%</td>
</tr>
<tr>
<td>3</td>
<td>500001 - 1000000</td>
<td>20%</td>
</tr>
<tr>
<td>4</td>
<td>>1000000</td>
<td>30%</td>
</tr>
</table>
</table>
<a href="next.html">Next Page</a>
</body>
</html>
Similar questions