Sequence NODE_119
Medium

Create a Simple Table for Product Comparison

HTML
Technical Specification

Build a table comparing at least three products with rows for features and columns for each product.

Input/Output Samples
Input:3 products, 5 features
Output:Comparison table with clear headings and values
Optimal Logic Path
<table><caption>Comparison</caption><thead><tr><th>Feature</th>...</tr></thead><tbody>...</tbody></table>.
Architectural Deep-Dive
Tables are best suited for tabular data; adding captions and table headers improves accessibility.