GSNA · Question #31
Which of the following are HTML tags, used to create a table?
The correct answer is A. <TR> B. <TD> F. <TABLE>. In Hypertext Markup Language (HTML), a table is created using the <TABLE>, <TR>, and <TD> tags. The <TABLE> tag designs the table layout, the <TR> tag is used to create a row, and the <TD> tag is used to create a column. For example, the following code generates a table with…
Question
Which of the following are HTML tags, used to create a table?
Options
- A<TR>
- B<TD>
- C<TABLE SET>
- D<SET TABLE>
- E<TT>
- F<TABLE>
How the community answered
(52 responses)- A71% (37)
- C17% (9)
- D8% (4)
- E4% (2)
Explanation
In Hypertext Markup Language (HTML), a table is created using the <TABLE>, <TR>, and <TD> tags. The <TABLE> tag designs the table layout, the <TR> tag is used to create a row, and the <TD> tag is used to create a column. For example, the following code generates a table with two rows and two columns: <TABLE BORDER=1> <TR> <TD>Cell 1</TD> <TD>Cell 2</TD> </TR> <TR> <TD>Cell 3</TD> <TD>Cell 4</TD> </TR> Answer: C, E, and D are incorrect. There are no HTML tags such as <TABLE SET>, <TT>, and
Topics
Community Discussion
No community discussion yet for this question.