Body

Between the tags <head> and </head> type:

<style>

body {
background-color: #f4e6d9;
font: 10px Tahoma;
Color :#808080;
}

</style>

Links' Colors

Between the tags <head> and </head> type:

<style>

A:LINK {
color: #78adc5;
}

A:VISITED {
color: #78adc5;
}

A:HOVER {color: #78adc5;
font-weight : bolder;
}

</style>

A:LINK refers to the color of the link that you can customize with the font type, weight and so on.
A:VISITED refers to the color of the visited link.
A:HOVER refers to the effect that will occur when you pass the mouse over the link.
If you keep this style you will have a link like mine.

Other tutorials