Go Back   Site Owners Forums - Webmaster Forums > Web Programming > Programming General > HTML / DHTML

Notices


Reply
 
Thread Tools Rate Thread Display Modes
Old 11-09-2011, 11:58 PM   #1
Trivia
Registered User
 
Join Date: Nov 2011
Location: Austria
Posts: 7
How to create tables in HTML?

How to create tables in HTML?
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Trivia is offline   Reply With Quote

Old 11-28-2011, 09:15 PM   #2
Davidweb
Registered User
 
Join Date: Nov 2011
Posts: 27
There are tag used for creating table in HTML:
<table border="1">
<tr>
<td>Row 1, cell 1</td>
<td>Row 1, cell 2</td>
</tr>
</table>
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Davidweb is offline   Reply With Quote
Old 11-29-2011, 04:32 AM   #3
chikkiarora
Registered User
 
Join Date: Nov 2011
Posts: 128
Smile

There are tags given in HTML to create tables. Table is basically a combination of rows and columns. In HTML to create table syntax is given below:
<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
This is the example to create tables.
chikkiarora is offline   Reply With Quote
Old 01-24-2012, 12:29 AM   #4
georgemathew
Registered User
 
Join Date: Dec 2011
Posts: 73
very much informative post thanks for sharing.
georgemathew is offline   Reply With Quote
Old 03-06-2012, 06:44 AM   #5
albertnewton
Registered User
 
Join Date: Mar 2012
Posts: 24
By using HTML table tag table can be created...
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
albertnewton is offline   Reply With Quote
Old 12-26-2011, 12:21 AM   #6
Harjeet
Registered User
 
Join Date: Dec 2011
Posts: 66
Hello
Yes this the right codding to create table in html.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Harjeet is offline   Reply With Quote
Old 12-31-2011, 03:56 AM   #7
madhuriarora
Registered User
 
Join Date: Dec 2011
Posts: 217
We can create tables much better than css.Yes the coding above provide is true to create table in HTML.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
madhuriarora is offline   Reply With Quote
Old 01-05-2012, 10:57 AM   #8
dheeraj
Registered User
 
Join Date: Dec 2011
Posts: 42
you can use tag creat in html table beacuse html is codding language.
dheeraj is offline   Reply With Quote
Old 01-23-2012, 11:44 PM   #9
beautymakeup
Registered User
 
Join Date: Jan 2012
Location: Canada
Posts: 2
Basic table format:

<table border="1" height=50% width=50%>
<tr>
<td>row1, cell1</td>
<td>row1,cell2</td>
</tr>
<tr>
<td>row2, cell1</td>
<td>row2,cell2</td>
</tr>
</table>
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
beautymakeup is offline   Reply With Quote
Old 03-23-2012, 05:58 AM   #10
sam051
Registered User
 
Join Date: Feb 2012
Posts: 128
<table border="1" height=40% width=40%>
<tr>
<td>row1, cell1</td>
<td>row1,cell2</td>
</tr>
<tr>
<td>row2, cell1</td>
<td>row2,cell2</td>
</tr>
</table>

This is the simple way of making table in HTML.
sam051 is offline   Reply With Quote
Old 03-27-2012, 07:29 AM   #11
johnsmith32
Registered User
 
Join Date: Mar 2012
Posts: 4
Create tables in Html

we create tables by in html
If we want to create attractive tables in html than for help use link quackit.com/html/html_table_tutorial.cfm thats is very useful to you.


Thanks
johnsmith32 is offline   Reply With Quote
Old 04-04-2012, 12:38 AM   #12
maxsamuel
Registered User
 
Join Date: Mar 2012
Posts: 88
<table>
<tr>
<td>row1, cell1</td>
<td>row1,cell2</td>
</tr>
<tr>
<td>row2, cell1</td>
<td>row2,cell2</td>
</tr>
</table>
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
maxsamuel is offline   Reply With Quote
Old 05-15-2014, 03:35 AM   #13
alligatortek001
Registered User
 
Join Date: Nov 2013
Posts: 92
you can create tables in HTML using the <table> tag along with the <hr>,<hd> and other tags.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
alligatortek001 is offline   Reply With Quote
Old 05-15-2014, 03:45 AM   #14
areeshanoor2020
Registered User
 
Join Date: Apr 2014
Location: Pakistan
Posts: 198
I suggest you if you want to use html and css. you can download macro dreamviewer 8 free. it's best software to create anything like Table, Links, color, size etc.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
areeshanoor2020 is offline   Reply With Quote
Old 05-18-2014, 11:34 PM   #15
koyal
Registered User
 
Join Date: May 2014
Posts: 308
<table>
<tr>
<td>Roll_no</td>
<td>Name</td>
</tr>
<tr>
<td>1</td>
<td>Koyal</td>
</tr>
</table>
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
koyal is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 11:04 AM.


Powered by vBulletin Copyright © 2020 vBulletin Solutions, Inc.