Prev Demo
Height And Width
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <style> table, td, th { border: 1px solid black; } table { border-collapse: collapse; width: 50px; } th { height: 80px; } </style> </head> <body> <h2>Height and width</h2> <table> <tr> <th>PRESIDENT</th> <th>PRIME MINISTER</th> <th>CHEIF MINISTER</th> </tr> <tr> <td>Pranab Mukherjee</td> <td>NARENDRA MODI</td> <td>CHANDRA BABAU NAIDU</td> </tr> <tr> <td>DELHI</td> <td>DELHI</td> <td>ANDHRA PRADESH</td> </tr> </table> </body> </html>
Note: We DO NOT save your trial code in our database.
Output