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: 1px solid black; } </style> </head> <body> <table style="width:100%;"> <tr> <th>Coffee</th> <th>Tea</th> </tr> <tr> <td style="width:65%;">Espresso</td> <td style="width:35%;">masala tea</td> </tr> </table> </body> </html>