| Emp Name | Sam |
|---|---|
| James | |
| John | |
| Salary | 50000 |
copy the below code for above result.
<html>
<head>
<title>HTML::Table</title>
</head>
<body>
<table width="60%" align="center" border="1">
<tr>
<th rowspan="3">Emp Name</th>
<td>Sam</td>
</tr>
<tr>
<td>James</td>
</tr>
<tr>
<td>John</td>
</tr>
<tr>
<th>Salary</th>
<td>50000</td>
</tr>
</table>
</body>
</html>
No comments :
Post a Comment