How we can have different cells in each row in <table>?
Answer / Pramod Kumar Yadav
To have different cells in each row of a table in HTML, you can use the `<td>` (table data) element to create individual cells. Here's an example:
```html
<table border="1">
<tr>
<td>Row 1 Cell 1</td>
<td>Row 1 Cell 2</td>
</tr>
<tr>
<td>Row 2 Cell 1</td>
<td>Row 2 Cell 2</td>
</tr>
</table>
```
| Is This Answer Correct ? | 0 Yes | 0 No |
Is html coding?
What is xpath in html?
What is formatting in html?
What is a list tag?
What is html5 and why is it important?
What is canvas in html5? How to write a canvas?
What is the use of a span tag?
What are the versions of html?
How to align <table> right/left in html?
Should you use br tags?
What is the difference between html5 and html4?
Explain Block Elements?