PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <head> <style> table, th, td { border: 5px outset blue; } </style> </head> <body> <h1>thead tag example</h1> <table> <thead> <tr> <th>HTML</th> <th>CSS</th> </tr> </thead> <tbody> <tr> <td>PHP</td> <td>PYTHON</td> </tr> <tr> <td>JS</td> <td>SQL</td> </tr> </tbody> </table> </body> </html>