Online Html Editor

<!DOCTYPE html> <html> <head> <title>The td rowspan attribute</title> <style> table, th, td { border: 1px solid black; } </style> </head> <body> <h1>The th rowspan attribute</h1> <table> <tr> <th rowspan="3">tutorialspoint</th> <th>Employee</th> <th>Designation</th> </tr> <tr> <td>Aman Kumar</td> <td>Technical content writer</td> </tr> <tr> <td>Farhan</td> <td>Developer</td> </tr> </table> </body> </html>