Color
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce ornare, metus ut accumsan eleifend, nisl augue vestibulum est, eget imperdiet nulla ipsum sed augue.
p {
color: #FFF; //color of the text
background-color: #000; // color of the background
}
Font-families
Curabitur sed semper ipsum. Curabitur massa mauris, ullamcorper eu dolor sit amet, finibus consequat ex. Cras fringilla enim eu purus rutrum blandit.
Websafe fonts
Mauris quis maximus velit, a tristique orci. Pellentesque convallis quis libero condimentum molestie. Donec tristique ante sapien, vel luctus nulla auctor ac.
Table tags
TAG | NAME | DESCRIPTION |
---|---|---|
<table> | Table | The wrapper element for all HTML tables. |
<thead> | Table Head | The set of rows defining the column headers in a table. |
<tbody> | Table Body | The set of rows containing actual table data. |
<tr> | Table Row | The table row container. |
<td> | Table Data | The table cell container. |
<tfoot> | Table Foot | The set of rows defining the footer in a table. |
Table tags
ATTRIBUTE | NAME | DESCRIPTION |
---|---|---|
colspan | Column Span | Defines how many columns a td element should span. |
rowspan | Row Span | Defines how many rows a td element should span. |