CSV to Web App
beginner~15 min0/4 steps
Instructions
1
Add an <h1> dashboard title — what data is this showing?
Hint: Try: `<h1 class="text-2xl font-bold text-white">Product Analytics</h1>`
2
Add a <table> with a <thead> containing at least 3 column headers (<th>)
3
Add a <tbody> with at least 4 data rows (<tr>) — fill in real-looking numbers
4
Add a totals row at the bottom: <tr class="summary-row"> with bold totals for each column
Your Code
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Live Preview
Live Preview