Comprehensive guide to modern HTML and CSS development.
HTML provides three types of lists:
<ul>): Bulleted list.<ol>): Numbered list.<dl>): List of terms and descriptions.Inside <ul> and <ol>, you use <li> (List Item) tags.
Tables (<table>) are used to display tabular data (rows and columns). Key table elements:
<tr>: Table Row<th>: Table Header (bold, centered by default)<td>: Table Data (standard cell)Edit the code below and click Run to see the result live.