Insert/Delete/BDO
Colors
Lists
Tables
Address Formatting
Preformatting
Entities


Insert/Delete/BDO

Should I be backwards? Should I be backwards?


Colors

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)

Lists
  1. Plants
  2. Animals
    1. Vertebrates
      • Animals with backbones
      • Warm or cold blooded
    2. Invertebrates
      Animals without backbones
  3. Bacteria

Tables
Header
Footer
R1C1 R1C2 R1C3
R2C1 R2C2 R2C3
R3C1 R3C2 R3C3

Address Formatting
Lane College of Computer Science and Electrical Engineering
College of Engineering and Mineral Resources
West Virginia University
PO Box 6109
Morgantown, WV 26506-6109

Preformatting

Preformatting, for source code: User prompt and entry:

Please enter number of times to print: 2
Source 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

Entities: the source code for italicized text is <i>
Non-breaking spaces: &nbsp; creates a s p a c e


(White space inserted below to verify targets are working correctly)