HTML
CSS
PHP
Deno
Examples
Do It Yourself
Blog
Type in your code below
Run
<!DOCTYPE html> <html> <head> <style> table { width: 100%; } tr, td, th { height: 50px; } </style> </head> <body> <table> <thead> <tr><th>Time</th><th>Subject</th></tr> <tr><td>12:00pm</td><td>Math</td></tr> <tr><td>2:00pm</td><td>English</td></tr> </thead> </table> </body> </html>