Results 1 to 5 of 5

Thread: Html table maker

  1. #1
    Join Date
    Aug 2009
    Posts
    36

    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. #2
    Join Date
    May 2008
    Posts
    4,831

    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. #3
    Join Date
    Dec 2008
    Posts
    371

    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. #4
    Join Date
    May 2008
    Posts
    4,345

    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. #5
    Candise Guest

    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>

Similar Threads

  1. Html program code for table
    By Sonam Goenka in forum Software Development
    Replies: 6
    Last Post: 29-12-2009, 08:03 AM
  2. How to Set table with Html Background?
    By Aakarshan.d in forum Software Development
    Replies: 3
    Last Post: 26-11-2009, 01:22 PM
  3. need to show data in other html table for php
    By Quattro in forum Software Development
    Replies: 3
    Last Post: 02-07-2009, 11:44 PM
  4. How to create scrollbar around the table in HTML
    By Ralph Lauren in forum Software Development
    Replies: 3
    Last Post: 14-05-2009, 12:51 PM
  5. In HTML table how can I wrap the text ?
    By Matellis in forum Software Development
    Replies: 5
    Last Post: 20-05-2008, 07:48 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,716,209,623.79837 seconds with 17 queries