HTML
CSS
PHP
Deno
Examples
Do It Yourself
Blog
Type in your code below
Run
<!DOCTYPE html> <html> <head> <style> table, td, th { border: 1px solid green; } th { background-color: green; color: white; } </style> </head> <body> <table> <thead> <tr> <th>Facts</th> <th>Quotes</th> </tr> <tr> <td>Green is the second most popular favorite color.</td> <td>Life is Green.</td> </tr> </thead> </table> </body> </html>