Unit 11: Applying Superior Typography Skills.
In order for your page to be read the text must be colored in a way so that it can be read against your background. The easiest way to do this is through a CSS or cascading style sheet. The code for my style sheet is as follows:
body {
background-color: #FFA5F7;
}
h1 {
color: #CC00FF;
}
h2 {
color: #CC00FF;
}
h3 {
color: #CC00FF;
}
h4 {
color: #CC00FF;
}
h5 {
color: #CC00FF;
}
h6 {
color: #CC00FF;
}
p {
color: #CC00FF;
}
a:link {
color: #CCFF99;
}
a:visited {
color: #72F8EA;
}
a:hover {
color: #FFFF66;
}
a:active {
color: #FF3366;
}
|