Mikey's Cheat Sheet

HTML table tags

Tag Name Description
<table> Table The Wrapper element for all HTML tables
<thead> Table Head Groups the header content in a table. The set of rows defining the colums in a table.
<tr> Table Row Tag representing a row inside a table.
<td> Table Data Defines a table cell.
<colspan> Column Span Defines how many columns a td element should span.
<rowspan> Row Span Defines how many rows a td element should span.

Useful CSS Example

Example Description
border: 1px solid black; create border: 1 pixel thick, solid line, black color
text-decoration: underline; Underlines text. Using "none" removes decoration.

Useful HTML Character Entities (escape characters)

Entity Name Result Description
&lt; < less than
&gt; > greater than
&amp; & ampersand