How to Create HTML Tables
Problems:
Write down the HTML code to design the following table:
Source Code:
<!DOCTYPE html>
<html>
<head>
<title>Create a table</title>
</head>
<body>
<table border="1" width="50%">
<tr>
<th rowspan="">Home</th>
<th>Department</th>
<th>Contact</th>
</tr>
<tr>
<td rowspan="2"></td>
<td>CSE</td>
<td rowspan="2"></td>
</tr>
<tr>
<td>BBA</td>
</tr>
</table>
</body>
</html>
No comments: