HTML Tag - Tables
Rabu, 28 Agustus 2013
0
komentar
<table>
This defines the HTML table.This tag has elements like <tr>,<th>,<td>.
<tr>
This defines a row in the HTML table.
<td>
This defines a cell in the HTML table.
<tbody>
This tag is used to group the body content in a HTML table.
<thead>
This tag is used to group header in an HTML table
<tfoot>
This tag is used to group footer content in an HTML table.
<col>
This tag specifies properties for each column within a <colgroup> element.
<colgroup>
This tag specifies a group of one or more columns in a table for formatting
<caption>
This tag defines a table caption.
This defines the HTML table.This tag has elements like <tr>,<th>,<td>.
<tr>
This defines a row in the HTML table.
<td>
This defines a cell in the HTML table.
<tbody>
This tag is used to group the body content in a HTML table.
<thead>
This tag is used to group header in an HTML table
<tfoot>
This tag is used to group footer content in an HTML table.
<col>
This tag specifies properties for each column within a <colgroup> element.
<colgroup>
This tag specifies a group of one or more columns in a table for formatting
<caption>
This tag defines a table caption.
<html>
<body>
| 1 | 2 |
|---|---|
| Sum | $180 |
| Day | Events |
| Monday | conference |
| Wednesday | meeting |
</body>
</html>
Baca Selengkapnya ....