HTML Crib Sheet
Tables
*tables are used to lay out information on a page.
<table> starts a table
</table> ends a table
<tr> starts a table row
</tr> ends a table row
<td> starts a table cell
Added to the Table tag -
borders="#" - thickness of board around table cells
cellspacing="#ofpixels" - distance between cells
Text
<p> begins a text segment
</p> ends a text segment
<b> begins a bold text segment
</b> ends a bold text segment
<i> begins an italic text segment
</i> ends an italic text segment
<u> begins an underlined text segment
Images
List Items
<ul> starts a unordered list ( for example, uses dots )
<ol> starts an ordered list ( for example 1, 2, 3, etc.)
<li> is used for each list item
Alignment
Fonts
<font size="-6 to +6">
<font color="#anysix">
Groups of Items
<div> adds elements to a group of items
</div> ends characteristics of a group of items
Example
<div align="center" font color="#F6h14k"> this tag will align the text in the center of a cell and give it a specific color.</div>