1/* HTML tags */
2
3BODY {
4 background-color: white;
5 color: darkblue;
6}
7
8TD { color: darkblue; }
9
10H1 { text-align: center; }
11
12H3 { font-style: italic; }
13
14HR {
15 width: 85%;
16 align: center;
17}
18
19.copyright { color: darkblue; }
20
21/* Links */
22
23:link { color: blue; }
24
25:visited { color: purple; }
26
27:active { color: red; }
28
29.el:link { font-style: italic; }
30
31/* Examples */
32
33DIV.fragment {
34 color: maroon;
35}
36