#1
| |||
| |||
Html table maker I am using html language for creating web pages. I have to insert two to three table and each contain two row with four column. Is there any software which allow to create table in html language, instead of writing table command and TR, TD. |
#2
| |||
| |||
Re: Html table maker Tables are defined with the <table> tag. The <table> tag begins the table, you place what you want inside, and end the table with the </table> tag.HTML::Table is used to generate HTML tables for CGI scripts. A table is divided into rows (with the <tr> tag), and each row is divided into data cells (with the <td> tag). To begin adding contents to your table, you will need the <tr> and <td> tags. |
#3
| |||
| |||
Re: Html table maker HTML Table Generator allows you to create tables without having to write all that code. Code: <table border="2" bordercolor="red" style="background-color:"red width="500" cellpadding="5" cellspacing="5"> <tr> <td>Table Cell</td> <td>Table Cell</td> </tr> <tr> <td>Table Cell</td> <td>Table Cell</td> </tr> </table> |
#4
| |||
| |||
Re: Html table maker This commands are use in HTML to create table : Code: <table> ......to create a table....... </table> <table> <tr> <td> table </td> </tr> </table> |
#5
| |||
| |||
Re: Html table maker Code: <table border="1" bordercolor="FFCC00" style="background-color:FFFFCC" width="400" cellpadding="3" cellspacing="3"> <tr> <td>Table Cell</td> <td>Table Cell</td> </tr> <tr> <td>Table Cell</td> <td>Table Cell</td> </tr> </table> <p style="font-family:verdana,arial,sans-serif;font-size:10px;"><a href="http://www.quackit.com/html/html_table_tutorial.cfm" target="_top">HTML Tables</a></p> |
![]() |
|
Tags: html language, html table maker, table, table command, web pages |
Thread Tools | Search this Thread |
|
![]() | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Html program code for table | Sonam Goenka | Software Development | 6 | 29-12-2009 08:03 AM |
How to Set table with Html Background? | Aakarshan.d | Software Development | 3 | 26-11-2009 01:22 PM |
need to show data in other html table for php | Quattro | Software Development | 3 | 02-07-2009 11:44 PM |
How to create scrollbar around the table in HTML | Ralph Lauren | Software Development | 3 | 14-05-2009 12:51 PM |
In HTML table how can I wrap the text ? | Matellis | Software Development | 5 | 20-05-2008 07:48 PM |