OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org
/TR/REC-html40/loose.dtd"> |
| 2 <html> |
| 3 <body background="../resources/basebg.gif"> |
| 4 <p>The style declarations which apply to the text below are:</p> |
| 5 <pre>.one {color: green;} |
| 6 .1 {color: red;} |
| 7 .a1 {color: green;} |
| 8 P.two {color: purple;} |
| 9 </pre> |
| 10 <hr><p style="color:green">This sentence should be green.</p> |
| 11 <p>This sentence should be black, not red-- class selectors cannot begin with di
gits in CSS1.</p> |
| 12 <p style="color:green">This sentence should be green.</p> |
| 13 <p style="color:purple">This sentence should be purple.</p> |
| 14 <pre>This sentence should NOT be purple.</pre> |
| 15 <ul> |
| 16 <li>This sentence should NOT be purple.</li> |
| 17 </ul> |
| 18 <table border cellspacing="0" cellpadding="3"> |
| 19 <tr> |
| 20 <td bgcolor="silver"> </td> |
| 21 <td> |
| 22 <p style="color:green">This sentence should be green.</p> |
| 23 <p>This sentence should be black, not red-- class selectors cannot
begin with digits in CSS1.</p> |
| 24 <p style="color:green">This sentence should be green.</p> |
| 25 <p style="color:purple">This sentence should be purple.</p> |
| 26 <pre>This sentence should NOT be purple.</pre> |
| 27 <ul> |
| 28 <li>This sentence should NOT be purple.</li> |
| 29 </ul> |
| 30 </td> |
| 31 </tr> |
| 32 </table> |
| 33 </body> |
| 34 </html> |
OLD | NEW |