in vb Show the HTML encoding for a table containing a single
in vb. Show the HTML encoding for a table containing a single row and three columns. Insert the letter A in the first column, the letter B in the second column, and the letter C in the third column.
Solution
<table>
<tr>
<td>A</td>
<td>B</td>
<td>C</td>
</tr>
output is ABC
