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> <body> <style> table, th, td { border: 5px solid blue; } </style> <h1>tr tag example</h1> <p>the tr tag making row in table</p> <table> <tr> <th>Month</th> <th>30 days</th> </tr> </table> </head> <body>