Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- What is a Table in HTML?
- A table is a representation of data arranged in rows and columns. Really, it's more like a spreadsheet. In HTML, with the help of tables, you can arrange data like images, text, links, and so on into rows and columns of cells.
- The use of tables on the web has become more popular recently because of the amazing HTML table tags that make it easier to create and design them.
- To create a table in HTML you will need to use tags. The most important one is the <table> tag which is the main container of the table. It shows where the table will begin and where it ends.
- <table>
- <tr>
- <td>Cell 1</td>
- <td>Cell 2</td>
- <td>Cell 3</td>
- </tr>
- <tr>
- <td>Cell 4</td>
- <td>Cell 5</td>
- <td>Cell 6</td>
- </tr>
- </table>
- for more: https://www.clictune.com/eHiu
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement