Tables are very important and easy to represent the data in tabular form.
HTML Table
The HTML <table> tag defines an HTML Table. Some basic elements are:-
- <tr> - This tag defines the table row.
 - <th> - This tag defines the table header. By default, the text in the <th> tag is bold and centered.
 - <td> - This tag defines the cell/column. By default, the text in the <td> tag is regular and left aligned.
 - <caption> - This element is used to define a table caption.
 
HTML Table - Attributes
- colspan - This attribute is used to make a cell span many columns.
 - rowspan - This attribute is used to make a cell span many rows.
 
❗We can style the table using CSS. It will be posted later.🙂
=======================================================================
📌Here is the Codepen link to the above examples:- ðŸ”—https://codepen.io/arwazkhan189/pen/ZEOdWqR
Next, we will learn about HTML Lists ...
Keep Learning and practice, practice, and practice.. !!!
LIKE, COMMENT, SHARE, SUBSCRIBE to the Blog!

