0
How to create a table like this?
1 Answer
+ 1
<table border="1" cellpadding = "2" cellspacing = "10">
<tr>
<th colspan="100%">Books about Computing</th>
</tr>
<tr>
<th style="width:35%">Title</th>
<th>Publisher</th>
<th style="width:25%">Author</th>
</tr>
<tr>
<td>IBM PC Assembly Language and Programming</td>
<td>Prentice-Hall</td>
<td>Abel, P</td>
</tr>
<tr>
<td>Object-Oriented Analysis and Design</td>
<td>Addison-Wesley</td>
<td>Booch, G</td>
</tr>
<tr style="text-align: center">
<td colspan="100%">Demostration of a Fixed Table</td>
</tr>
</table>
https://code.sololearn.com/WlkMLht4IY8y/?ref=app