Design a Printable Data Report
Design a Printable Data Report
Dashboards are great for screens, but stakeholders still want something they can print, attach to an email, or drop into a deck. A clean, shareable report is one of the most valuable artifacts an analyst can produce.
In this lesson you'll build a structured report layout: a clear title block, an executive summary, a tidy data table, and a footer stamped with the report date. The design is intentionally calm and high-contrast so it reads well on paper and screen alike.
Focus on hierarchy. A good report guides the reader from headline to summary to detail without making them hunt. Let's build a document people will actually want to share.
Instructions
Add a report header with an h1 title "Q4 Performance Report".
Hint: Use: `<header>...<h1 class="text-3xl font-bold">Q4 Performance Report</h1>...</header>`.
Where does this go?
<!-- Build your printable report here -->Write it on line 11 — under that comment, after the code you already added.
Add a summary section with an h2 heading and a paragraph of executive summary text.
Add a data table to present the regional breakdown.
Add a footer that stamps the report with its generation date.
Your Code
Describe what you want to build for this step and I'll write the code — then click Apply to drop it into your editor. This step: Add a report header with an h1 title "Q4 Performance Report".