| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <title>CSS Reference</title> | |
| <style> | |
| div { | |
| border: solid; | |
| color: green; | |
| text-align: center; | |
| } | |
| </style> | |
| <body> | |
| <p>Test passes if the words "PASS PASS" below are green and the words are centered within the box below.</p> | |
| <div>PASS PASS</div> | |
| </body> |