Looks like no one added any tags here yet for you.
define html tables
HTML tables allow web developers to arrange data into rows and columns.
difference between ul and ol tags
<ul>
is for unordered lists, where the order of items doesn't matter, and bullet points are typically used. <ol>
is for ordered lists, where items have a specific sequence, and numbers or letters are used to indicate the order of items.
how are html tables created
Start with the <table>
element to create the table structure.
Add rows using the <tr>
element, with each <tr>
representing a new row.
Optionally, use the <th>
element to create header cells to label the data in the first row or column.
Insert data cells using the <td>
element for the actual data in the table.
list-style-image
you can use a custom image as the marker for list items
List-style
the list-style
property is a shorthand property that combines several list-related properties into one.
empty-cell
the empty-cells property allows you to determine whether or not the borders and backgrounds of empty table cells should be displayed.