HTML Help: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
== HTML == | == HTML == | ||
<tr> tag defines a row in an HTML table; <tr> element contains one or more <th> or <td> elements | * <tr> tag defines a row in an HTML table; <tr> element contains one or more <th> or <td> elements | ||
<th> tag defines a header cell in an HTML table, contains header information, text are bold and centered by default. | * <th> tag defines a header cell in an HTML table, contains header information, text are bold and centered by default. | ||
<td> tag defines a standard cell in an HTML table, contains data, text are regular and left-aligned by default. | * <td> tag defines a standard cell in an HTML table, contains data, text are regular and left-aligned by default. | ||
Revision as of 10:16, 10 August 2012
HTML
- tag defines a row in an HTML table; element contains one or more or elements
- tag defines a header cell in an HTML table, contains header information, text are bold and centered by default.
- tag defines a standard cell in an HTML table, contains data, text are regular and left-aligned by default.