The answer is <table>
<td>
<tr>
The same size
IBM
tag
this are three examples of tag questions: 1.He is an engineer. Isn't he? 2.You went to the supermarket. Didn't you? 3.Ms. Zeller has a new car. Doesn't she? i hope i help on you :))
It depends on which method of tag you are playing
TLMTTHS
Table Row
The tr tag.
The <tr> tag designates a table row. For example, in the code below, a table with one row and two cells on that row is created. <table> <TR> <TD>lorem</TD> <TD>ipsum</TD> </TR> </TABLE>
The <tr> tag in HTML functions to define a table row. It's part of a <table> tag's body, and is used to contain either table headers <th> or table cells <td>.
There are several tags used to create HTML tables. The minimum requirement are the <table> (start of the table), <tr> (row tag), and <td> (cell tag) tags. You use <table> and the beginning and </table> at the end of your entire table. You use the <tr><td>content</td><td>content</td></tr> tags to identify the rows and cells within the rows.
The <td></td> tag creates a table data cell. This is one of the boxes within an HTML table, and it intended to hold data (as opposed to a <th> which represents a table heading.) Table cells are always contained within a table row <tr> tag.
You create a table row using the TR tag... <table> <!-- ROW 1 --> <tr> <th>X</th> <th>Y</th> </tr> <!--ROW 2--> <tr> <td>Tom</td> <td>Sue</td> </tr> </table>
Each row in a table starts with the <TR> tag, and the cells are started with the <TD> tags which are inside the TR tags. To remove a specific row just highlight, and delete from <TR> to</TR> for example a table with two rows might look like this: <Table> <TR> <td>first row</td> </TR> <TR> <td>second row</td> </TR> </Table> To remove the first row delete <TR> <td>first row</td> </TR> You will be left with: <Table> <TR> <td>second row</td> </TR> </Table>
TD means table data.the tag inserts a new cell inside a table row to represent an entry{value}in the table. Ex: Heading 1 Heading 2 Data 1 Data 2 This would give an output like Heading 1 Heading 2 Data 1 Data 2
The table tags include - Makes table - Table row - Table header - Table cellComplex elements:
A tag identifies the cable, a tie holds it in place.