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>


Screenshots of Source Code(Sublime Text):


How to Create HTML Tables
How to Create HTML Tables


Screenshot of Output(Browser):


How to Create HTML Tables


Post a Comment

Previous Post Next Post