Write HTML program to design the given web page having table
of 3 column and 5 rows and should cover the following points.
1) The column headings are Country name, Population and
spoken language.
2) Search and browse the Internet regarding the population of
5 different countries and the language they speak.
3) Use the different attributers of <BODY> , <Font>, <TABLE>,
<TR>, <TD> tags etc to make the web page look attractive.
Answers
Answered by
6
Explanation:
<HTML>
<Font size = "s">
<BODY>
<TABLE>
<TR>
<TD> Country name </TD>
<TD> India </TD>
<TD> US </TD>
<TD> Brazil </TD>
<TD> Japan </TD>
<TD> Columbia </TD>
</TR>
<TR>
<TD> Population </TD>
<TD> 136.64 Crores </TD>
<TD> 32.82 Crores </TD>
<TD> 21.1 Crores </TD>
<TD> 12.63 Crores </TD>
<TD> 5.03 Crores </TD>
</TR>
<TR>
<TD> Spoken Language </TD>
<TD> Hindi </TD>
<TD> English </TD>
<TD> Portuguese </TD>
<TD> Japanese </TD>
<TD> Spanish </TD>
</TR>
</TABLE>
</BODY>
</HTML>
and save the file with xyz.html
Similar questions