write the HTML coding to create the following table in the web page
Attachments:
Answers
Answered by
2
Answer:
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
text-align: left;
}
</style>
</head>
<body>
<table style="width:50%">
<tr>
<th rowspan="2">Day 1</th>
<td>Workshop on Flash animation<br>10-10.30 am.</td>
</tr>
<tr>
<td>Workshop on Photoshop<br>12-12.30 pm.</td>
</tr>
</table>
</body>
</html>
Explanation:
rank me as brainly if u feel my answer helps u.thank u
Similar questions