answersLogoWhite

0


Best Answer

The answer is <table>

<td>

<tr>

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which tag identifies the beginning of a table row?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What tag identifies the beginning of an HTML?

TLMTTHS


What does the tag TR stand for?

Table Row


What does tr stand for in HTML?

The &lt;tr&gt; tag designates a table row. For example, in the code below, a table with one row and two cells on that row is created. &lt;table&gt; &lt;TR&gt; &lt;TD&gt;lorem&lt;/TD&gt; &lt;TD&gt;ipsum&lt;/TD&gt; &lt;/TR&gt; &lt;/TABLE&gt;


Which HTML tag would be apply the bgcolour attribute to change the background color of single table row?

The tr tag.


What is the functin of the tr in HTML?

The &lt;tr&gt; tag in HTML functions to define a table row. It's part of a &lt;table&gt; tag's body, and is used to contain either table headers &lt;th&gt; or table cells &lt;td&gt;.


How do you make HTML tables?

There are several tags used to create HTML tables. The minimum requirement are the &lt;table&gt; (start of the table), &lt;tr&gt; (row tag), and &lt;td&gt; (cell tag) tags. You use &lt;table&gt; and the beginning and &lt;/table&gt; at the end of your entire table. You use the &lt;tr&gt;&lt;td&gt;content&lt;/td&gt;&lt;td&gt;content&lt;/td&gt;&lt;/tr&gt; tags to identify the rows and cells within the rows.


What does the HTML tag TD create?

The &lt;td&gt;&lt;/td&gt; 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 &lt;th&gt; which represents a table heading.) Table cells are always contained within a table row &lt;tr&gt; tag.


How do you add colums to HTML?

You create a table row using the TR tag... &lt;table&gt; &lt;!-- ROW 1 --&gt; &lt;tr&gt; &lt;th&gt;X&lt;/th&gt; &lt;th&gt;Y&lt;/th&gt; &lt;/tr&gt; &lt;!--ROW 2--&gt; &lt;tr&gt; &lt;td&gt;Tom&lt;/td&gt; &lt;td&gt;Sue&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt;


How can delete a table Row in HTML?

Each row in a table starts with the &lt;TR&gt; tag, and the cells are started with the &lt;TD&gt; tags which are inside the TR tags. To remove a specific row just highlight, and delete from &lt;TR&gt; to&lt;/TR&gt; for example a table with two rows might look like this: &lt;Table&gt; &lt;TR&gt; &lt;td&gt;first row&lt;/td&gt; &lt;/TR&gt; &lt;TR&gt; &lt;td&gt;second row&lt;/td&gt; &lt;/TR&gt; &lt;/Table&gt; To remove the first row delete &lt;TR&gt; &lt;td&gt;first row&lt;/td&gt; &lt;/TR&gt; You will be left with: &lt;Table&gt; &lt;TR&gt; &lt;td&gt;second row&lt;/td&gt; &lt;/TR&gt; &lt;/Table&gt;


What is the meaning of TD in HTML?

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


What Is The code for table in HTML?

The table tags include - Makes table - Table row - Table header - Table cellComplex elements:


How do you create a table using HTML?

&lt;table&gt; (in the table tag you can also put 'border=#' so that you can see lines on the table.) &lt;tr&gt; (for a row) &lt;td&gt; (for a column in the row) TEXT &lt;/td&gt; &lt;td&gt; TEXT &lt;/td&gt; &lt;td&gt; TEXT &lt;/td&gt; &lt;/tr&gt; (you've got to close these tags) &lt;/table&gt; Of course you can add more columns or rows. There is much more to tables but here's the basics.