Advertisement
sissou123

Untitled

Apr 9th, 2022
902
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.80 KB | None | 0 0
  1. What is a Table in HTML?
  2.  
  3. 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.
  4.  
  5. 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.
  6.  
  7. 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.
  8. <table>
  9.   <tr>
  10.     <td>Cell 1</td>
  11.     <td>Cell 2</td>
  12.     <td>Cell 3</td>
  13.   </tr>
  14.   <tr>
  15.     <td>Cell 4</td>
  16.     <td>Cell 5</td>
  17.     <td>Cell 6</td>
  18.   </tr>
  19. </table>
  20.  
  21. for more: https://www.clictune.com/eHiu
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement