What is table ?
A set of rows and columns is called Table
Table allow web author (owner of web site)
To arrange there data
For eg. Text,Image,links etc.
We can create HTML table by using <table> tag.
The <tr> tag is use to create rows in table
And <td> is use to create data cell (in which we can put data).
Code:-
° Border Attribute :- From above example we can se.
using Border Attribute we can give border to table. By default value of border attribute is "0".
<table border="1">
Output:-
°Cellpadding & Cellspacing Attribute :-
• Cellpadding :- Cellpadding Attribute is use to give distance between cell border and content within the cell .
<Table Cellpadding="5">
•Cellspacing :- Cellspacing Attribute is use to set the width of the table border
<Table Cellspaceing="5">
Code:-
There are two attribute to set Background color to Table
•Bgcolor:- using bgcolor attribute we can give background color to table for whole table for only one cell
<table bgcolor="red">
Code:-
Output:-
To use this attribute we need some knowledge of CSS. This attribute is written inside of head tag using style tag.
Code:-
Output:-
As above example se saw that the background tag is Written inside the Style tag which is Written in head tag. We use url along the background attribute because we give the url of the image that we have to insert.
°Table Height And Width:-
As name suggests this two attribute is use to set the Hight and width of the table. We can specify the Hight and width in form of pixels.
<Table width="in form of percentage of pixel form" Height="as Written inside the width">
Code:-
°Table Caption:-
Caption tag is use to give title or a short information about the table. The caption tag is displayed on top of the table.
<Caption> Write the caption of the table
</Caption>
Code:-
°Table Header,Body,Footer.
The table can be divided into three parts Header of the Table Body and the Footer.
The Header and Footer remain same for every page. Body is the main contain holder of the Table.
Tags :-
<thead>:-to create seprate table Header.
<tbody>:- to seprate the main Body of the Table.
<tfoot>:- to create seprate table Footer.
Remember that <thead> and <tfoot> tag should apper befor <tbody>
Code:-
°Nested Table:-
Using this attribute we can create the one another table inside main table. Not only the table but we can almost use all the tag inside table data tag <td> tag
Code:-
No comments:
Post a Comment