answersLogoWhite

0

A TABLE in HTML is a way to display data in rows and colums. A simple example is shown below and the atributes that can be used.

First Row - First CellFirst Row - Secon Cell
Second Row - First CellSecond Row - Second Cell

This opens the table then defines a row. Within that row you are placing two data items. You are then closing the row. You are then defining the second row. Within that row you are placing the next two data items. You are then closing the row. You are then closing the table.

* … *

* … *

*

* *

* *

*

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

Which HTML tag symbolizes a table cell?

The <td> tag defines a cell. It stands for table data.


What is the functin of the tr in HTML?

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>.


What does the HTML tag TD create?

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.


How do you use border in HTML?

Border can be an attribute in html. For example, in the table tag. This will put a border around the table.As another example, it can be used in the img tag.


What is the HTML code to make link inside a table?

You have to use the anchor tag to make a link. The code will be <a><table>Table-Stuff</table></a>.


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

The tr tag.


Why use div in HTML?

Its typically used for a tabless design. Replaces <table> tag.


What is the A HTML tag called?

The HTML tag is called the "anchor" tag.


What is a tag when using Html?

A Tag in HTML can be compared to a keyword in any programming language. It instructs the browser about how the subsequent pieces of text must be parsed and displayed. A Tag in HTML is enclosed within the <> symbols. Any text between the <HTML> and </HTML> tags is considered HTML content and the browser will handle it the way HTML code is to be handled. There are numerous tags available in HTML. Some are * <BR> - Line Break * <HR> - Horizontal Line * <TABLE> - To display a table (Like a spreadsheet with heading & cells) * <FORM> - To display UI forms * etc...


What HTML tag is used to mark the top of the page?

The first tag you use when developing an HTML document is the tag. The first tag you use for the main content of your page is the tag. is the tag that marks the top of an HTML page. The minimum required first like is , which starts the definition of the page content.


How do you make HTML tables?

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.


How do you rectify HTML to PHP variable error?

To use HTML as variable in PHP . echo the html tag written in double quotes. Example : <?php echo "<table>"; echo "<tr><td></td><td></td></tr>" echo "</table>"; ?>