Online Html Editor | Online Html Compiler

<!DOCTYPE html> <html> <head> <title>Table Cell Rowspan Example</title> </head> <body> <h2>Table Cell Rowspan with rowspan Attribute</h2> <table border="1"> <tr> <td rowspan="2">Spanning two rows</td> <td>Row 1, Cell 2</td> <td>Row 1, Cell 3</td> </tr> <tr> <td>Row 2, Cell 2</td> <td>Row 2, Cell 3</td> </tr> <tr> <td>Row 3, Cell 1</td> <td>Row 3, Cell 2</td> <td>Row 3, Cell 3</td> </tr> </table> </body> </html>