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
3
Answer:
Explanation:
Constructing an HTML table consists of describing the table between the beginning table tag, <TABLE>, and the ending table table tag, </TABLE>. Between these tags, you then construct each row and each cell in the row. To do this, you would first start the row with the beginning row tag, <TR>, and then build the row by creating each cell with the beginning cell tag, <TD>, adding the data for that cell, and then closing the cell with the ending cell tag, </TD>. When you finish all of the cells for a row, you would then close the row with the ending row tag, </TR>.Then, for each new row, you would repeat the process of beginning the row, building each cell in the row, and closing the row.
Similar questions