A polished web starter that draws a bar chart from editable sample data.
Great for dashboards, analytics mockups, or learning how HTML, CSS, and JavaScript work together.
index.html
<canvas id="chart"></canvas>
const points = [42, 68, 54, 80, 61];
drawChart();