1<html>
2 <head>
3 <style type="text/css">
4 p {
5 font-size:14px;
6 color:#538b01;
7 font-weight:bold;
8 font-style:italic;
9 }
10 .date {
11 color: #ff0000;
12 }
13 .season { /* OK, a bit contrived... */
14 color: #0000a0;
15 }
16 </style>
17 </head>
18 <body>
19 <p>
20 Enter the competition by
21 <span class="date">January 30, 2011</span>
22 and you could win up to $$$$ — including amazing
23 <span class="season">summer</span>
24 trips!
25 </p>
26 </body>
27</html>
28
1p {
2 font-size:14px;
3 color:#538b01;
4 font-weight:bold;
5 font-style:italic;
6}
7
8mark.red {
9 color:#ff0000;
10 background: none;
11}
12
13mark.blue {
14 color:#0000A0;
15 background: none;
16}
17
1<p style="font-size:14px; color:#538b01; font-weight:bold; font-style:italic;">
2 Enter the competition by
3 <span style="color: #ff0000">January 30, 2011</span>
4 and you could win up to $$$$ — including amazing
5 <span style="color: #0000a0">summer</span>
6 trips!
7</p>
8