body {
font-family: Verdana, Geneva, Arial, sans-serif;
font-size: small;
}
/*
This changes the font family to sans serif and the font size to small.
*/
body {
text-decoration: underline;
}
/*
This makes the text underlined.
*/
body {
font-weight: bold;
}
/*
This makes the body text bold.
*/
body {
color: silver;
}
/*
This makes the body text colored silver.
*/
body {
font-size: 14px;
}
/*
This makes the font size 14.
*/
h1 {
font-size: 170%;
}
/* 
This changes the heading 1's font size to 170%
*/
h2 {
font-size: 130%;
}
/*
This changes the heading 2's size to 130%.
*/
h1, h2 {
font-weight: normal;
color: silver;
border-bottom: thin dotted #888888;
}
/*
This makes the headings font weight to normal, the color to #cc6600 and it also makes it have a dotted border
*/
body {
background-color: rgb(80%, 40%, 0%);
}
/*
This changes the background color to rgb(80%, 40%, 0%).
*/
blockquote {
font-style: italic;
}
/*
This makes the blockquote text in italics.
*/
em {
text-decoration: none;
}
/*
This makes emphasized text have no decoration.
*/

