Posts

How to create a table

Image
                                  How to Create a table On this blog you will also learn how to create multiple rows in a table, create tables with heading, how to merge table cells, and how to specify column width. Steps on how to create a one row table. 1. Open Notepad. 2. Type the following code below in HTML: <table>      <tr>         <td>Cell(2)</td>         <td>Cell2</td>         <td>Cell2</td>      </tr> </table> OUTPUT: Steps on how to create multiple rows in a table with a border line: 1. Open Notepad. 2. Type the following code below in HTML: <table border="1">       <tr>          <td> Row 1 Cell 1</td>          ...