answersLogoWhite

0

What do you meant by table in HTML?

User Avatar

Anonymous

14y ago
Updated: 8/19/2019

Table is a physical construct that has rows and columns. It similar in many forms to a database.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How do you create and use an HTML table?

HTML tables are created by the <table> command. Inside the table we can use tags like <li>, <ul>,<ol> etc.


What is an advantage of exporting a table to an HTML file?

The advantage of exporting a table in HTML is that you could easily manipulate it. You could also show it in a website.


How do you create homepage or web page from event in table format using HTML?

Homepage can be created using HTML or various other languages. <table> can be used to create tabular format in HTML.


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


How do you print an HTML table using PHP?

It is really simple to print an HTML table in PHP, all you have to do is the following: <?php print "<table>"; print "<tr>"; print "<td>hello</td>"; print "</tr>"; print "</table>"; ?>


Is html table has no standard size such as width and height?

There is no standard size for HTML tables. They take their size by the amount of content in the table or by the the designer specifying a size.


What is meant by colspan in HTML?

it combine the number of columns


How do you make a table on WikiAnswers?

You could make the table in an HTML editor and paste it here.


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


How do you get rid of a table on an HTML website?

Well, if you own it, just delete the table from the document! :P


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 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>"; ?>