Html Telugu Tutorials || Part-14 || || TABLE || With 4 TAGS & BORDER Attribute || Extra Practical Output

Html Telugu Tutorials || Part-14 || || TABLE || With 4 TAGS & BORDER Attribute || Extra Practical Output

Html Telugu Tutorials || Part-14 || || TABLE || With 4 TAGS & BORDER Attribute || Extra Practical Output

Table:

Tables are defined with the <table> tag.

To insert a table on your page you simply add these tags where you want the table to occur:

Syntax:

<table>

</table>

ROWS:
To add rows to your table use the <tr> and </tr> tags.

Syntax:

<table>

<tr></tr>

<tr></tr>

</table>

COLUMNS:
You can divide rows into columns with <td> and </td> tags.

Syntax:

<table>

<tr><td></td><td></td></tr>

<tr><td></td><td></td></tr>

</table>

Example:-

<table>

<tr><td>One</td><td>Two</td></tr>

<tr><td>Three</td><td>Four</td></tr>

</table>

 

Extra Practical Output

durgaprasad

leave a comment

Create Account



Log In Your Account