HTML
CSS
PHP
Deno
Examples
Do It Yourself
Blog
Type in your code below
Run
<!DOCTYPE html> <html> <head> <style> table th, table td { padding: 20px; } </style> </head> <body> <table> <thead> <tr><th>Padded Table Headers</th><th>Padded Table Headers</th></tr> <tr><td>Padded Table Cells</td><td>Padded Table Cells</td></tr> </thead> </table> </body> </html>