Insert/Delete/BDO
Colors
Lists
Tables
Address Formatting
Preformatting
Entities
Should I be backwards?
Should I be backwards?
The standard 16:
Aqua | Black | Blue | Fuchsia |
Gray | Green | Lime | Maroon |
Navy | Olive | Purple | Red |
Silver | Teal | White | Yellow |
Hex/RGB
#000000 rgb(0,0,0) |
#FF0000 rgb(255,0,0) |
#00FF00 rgb(0,255,0) |
#0000FF rgb(0,0,255) |
#00FFFF rgb(0,255,255) |
#FF00FF rgb(255,0,255) |
#FFFF00 rgb(255,255,0) |
#FFFFFF rgb(255,255,255) |
Header | ||
---|---|---|
Footer | ||
R1C1 | R1C2 | R1C3 |
R2C1 | R2C2 | R2C3 |
R3C1 | R3C2 | R3C3 |
Preformatting, for source code: User prompt and entry:
Please enter number of times to print: 2Source code:
printf("Learning html...\n");
for(int i = 0; i < 5; i++) {
printf("Still learning html...\n");
} /* end for */
Result:
Still learning html... Still learning html...
Entities: the source code for italicized text is <i>
Non-breaking spaces: creates a s p a c e
(White space inserted below to verify targets are working correctly)