write the html code to display select border side of table
Answers
Answered by
3
Display only the outside borders of a table:
<table frame="box">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
<table frame="box">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
smileygirljulie:
hmm
Answered by
4
hey mate here's your answer
<html>
<body>
<table border="1" frame="hsides">
<tr>
<td>cell data </td>
<td>cell data </td>
</tr>
</table>
</body>
</html>
hope this will help you !!
please mark it as brainliest.
<html>
<body>
<table border="1" frame="hsides">
<tr>
<td>cell data </td>
<td>cell data </td>
</tr>
</table>
</body>
</html>
hope this will help you !!
please mark it as brainliest.
Attachments:
Similar questions