0
what tag contains the cell tag besides the table
5 Answers
+ 3
<tr>- table row tag
You must have found this question in lesson. Keep in mind don't just keep scrolling through pages. You have to read in order to understand. Try the codes provided in lessons. Change some tags. Modify the code. You'll not understand anything just by scrolling pages.
Always read comments on each lesson.
All the best.
Just to revice a little bit see :
we basically need 3 tags for any table.(ther are many morr but we these 3 the most) :
<table> - as it sounds ,to create a table.
<tr> -table row. to add a row in table.
<td> -table data. this is used to create a cell and is nested inside a tr tag.
https://www.sololearn.com/learn/HTML/1033/?ref=app
+ 3
Ipang the question says "what tag contains cell tag beside table tag"
Basically they have said table tag contains a cell tag i.e td (table cell /data). So we need to know which other tag is parent of td and therefore answer is tr table row not td.
+ 2
š®š³Omkarš
Yes, maybe I misunderstood the question. I took it was asking for the cell tag :D
I think the "besides the table" here makes it bit confusing. Is the OP looking for an alternative to table tag : )
+ 1
This question is related to HTML, so you should put HTML in Relevant Tags (not 'ans').
I think <td> is what you're looking for.
0
<td>