Friday 28 March 2014

HTML Tables



HTML Table का उदाहरण :

First Name
Last Name
Points
Jill
Smith
50
Eve
Jackson
94
John
Doe
80
Adam
Johnson
67

HTML Tables                       Tables को <table> tag द्वारा बनाया जाता है। एक table <tr> tag के द्वारा rows में बटी हुई होती है, और हर row <td> tag के द्वारा data cells में बटी हुई होती है । td "table data," के लिये प्रयुक्त होता है और जिसमें data cell का मान होता है। <td> tag मे text, links, images, lists, forms, other tables, आदि उपयोग किया जा सकता है।
<table border="1">
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<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>

उपयुक्त HTML code को browser मे इस तरह देखा जा सकता है :
 
Header 1
Header 2
row 1, cell 1
row 1, cell 2
row 2, cell 1
row 2, cell 2


HTML Table Tags

Tag
Description
<table>
Defines a table
<th>
Defines a header cell in a table
<tr>
Defines a row in a table
<td>
Defines a cell in a table
<caption>
Defines a table caption
<colgroup>
Specifies a group of one or more columns in a table for formatting
<col>
Specifies column properties for each column within a <colgroup> element
<thead>
Groups the header content in a table
<tbody>
Groups the body content in a table
<tfoot>
Groups the footer content in a table
 


0 comments:

Post a Comment