This is a draft cheat sheet. It is a work in progress and is not finished yet.
Special Characters
< |
< |
> |
> |
& |
& |
" |
" |
© |
Copyright |
Images
<img src="____" alt="____"> |
Unordered List
<ul type="____">
<li> </li>
</ul> |
Ordered List
<ol type="____">
<li> </li>
</ol> |
Description List
<dl>
<dt> </dt>
<dd> </dd>
</dl> |
Tables
<table> </table> |
Contains the table |
<tr> </tr> |
Contains a table row |
<td> </td> |
Contains a table data (cell) |
<caption> </caption> |
Configures a description of the table |
<th> </th> |
Configure Column and Row Headings (centered and bold) |
colspan Attribute |
Specifies the number of columns that a cell will occupy |
rowspan Attribute |
Specifies the number of rows that a cell will occupy |
Link Element CSS
<link rel="stylesheet" type = "text/css" href="____"> |
|
|
|
|
|