TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html> <body> <h2>Merged Cells Example</h2> <table border="1"> <tr> <th>Name</th> <th>Details</th> </tr> <tr> <td>Alice</td> <td rowspan="2">Excellent student</td> </tr> <tr> <td>Bob</td> </tr> </table> </body> </html>