<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Reference</title> <style> td { color: green; border: 2px solid black; } </style> <body> <p>Test passes if only the word "col" appears in the box below.</p> <table> <tr> <td>col</td> </tr> </table> </body>