The HTML code for the above is given as follows
<table>
<tr>
<th>Country</th>
<th>Year</th>
<th>Population (In Crores)</th>
</tr>
<tr>
<td rowspan="3">India</td>
<td>1998</td>
<td>85</td>
</tr>
<tr>
<td>1999</td>
<td>90</td>
</tr>
<tr>
<td>2000</td>
<td>100</td>
</tr>
<tr>
<td rowspan="3">USA</td>
<td>1998</td>
<td>30</td>
</tr>
<tr>
<td>1999</td>
<td>35</td>
</tr>
<tr>
<td>2000</td>
<td>40</td>
</tr>
<tr>
<td rowspan="3">UK</td>
<td>1998</td>
<td>25</td>
</tr>
<tr>
<td>1999</td>
<td>30</td>
</tr>
<tr>
<td>2000</td>
<td>35</td>
</tr>
</table>
Why are HTML Codes Important?HTML codes are important because theydefine the structure and content of webpages.
They provide a standardized way to format and present information, including text,images, links, and multimedia.
HTML codes allow web browsers to interpretand render web content, enabling users to access and navigate websites effectively.
Learn more about HTML Codes:
https://brainly.com/question/4056554
#SPJ1