πŸ“Š HTML
Q. Which of the following tags are related to a table in HTML?
  • (A) <table> <row> <column>
  • (B) <table> <tr> <td>
  • (C) <table> <head> <body>
  • (D) <table> <header> <footer>
πŸ’¬ Discuss
βœ… Correct Answer: (B) <table> <tr> <td>

Explanation: Example to create a table in HTML:
<table>
<tr>
<td>....</td>
<td>....</td>
</tr>
<tr>
<td>....</td>
<td>....</td>
</tr>
</table>

Explanation by: Tanmay
Example to create a table in HTML:
<table>
<tr>
<td>....</td>
<td>....</td>
</tr>
<tr>
<td>....</td>
<td>....</td>
</tr>
</table>

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
192
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Tanmay
Publisher
πŸ“ˆ
98%
Success Rate