Chapter 11: Code Editing Tools

Document information (p. 215)

<?xml version="1.0" encoding="iso-8559-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

CSS writing preferences (p. 244)

a sample style definition

h1 {
color: #FF0000;
text-decoration: none;
font-family: "Courier New", Courier, mono;
color: #FF0000;
}

and that definition in shorthand

h1 {
color: #FF0000;
font: bold 16pt "Courier New", Courier, mono;
text-decoration: none;
}