Bisher weiß ich nur, wie ich einzelnen Textpassagen einen Style zufüge.
Nämlich wie?
So: ich habe ein externes Stylesheet, in dem für Links z.B. folgendes steht:
a.link:link {
font-family: Verdana;
color: #D2108A;
font-size: 13px;
text-decoration: none;
font-weight: bold;
}
a.link:visited {
font-family: Verdana;
font-size: 13px;
color: #D2108A;
text-decoration: none;
font-weight: bold;
}
a.link:hover {
font-family: Verdana;
font-size: 13px;
color: 009F4F;
text-decoration: underline;
font-weight: bold;
}
a.link:active {
font-family: Verdana;
font-size: 13px;
color: #D2108A;
text-decoration: none;
font-weight: bold;