|
![]() |
#1 |
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. |
![]() |
![]() |
![]() |
#2 |
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. |
![]() |
![]() |
![]() |
#3 |
Registered User
Join Date: Nov 2011
Posts: 128
|
![]()
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. |
![]() |
![]() |
![]() |
#4 |
Registered User
Join Date: Dec 2011
Posts: 73
|
very much informative post thanks for sharing.
|
![]() |
![]() |
![]() |
#5 |
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. |
![]() |
![]() |
![]() |
#6 |
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. |
![]() |
![]() |
![]() |
#7 |
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. |
![]() |
![]() |
![]() |
#8 |
Registered User
Join Date: Dec 2011
Posts: 42
|
you can use tag creat in html table beacuse html is codding language.
|
![]() |
![]() |
![]() |
#9 |
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. |
![]() |
![]() |
![]() |
#10 |
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. |
![]() |
![]() |
![]() |
#11 |
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 |
![]() |
![]() |
![]() |
#12 |
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. |
![]() |
![]() |
![]() |
#13 |
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. |
![]() |
![]() |
![]() |
#14 |
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. |
![]() |
![]() |
![]() |
#15 |
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. |
![]() |
![]() |
![]() |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|