diff --git a/pages/course/svg/path-element.tsx b/pages/course/svg/path-element.tsx
index a4262054..49b772d1 100644
--- a/pages/course/svg/path-element.tsx
+++ b/pages/course/svg/path-element.tsx
@@ -182,6 +182,50 @@ export default function Home() {
practiceSandbox: 'exercise/SvgPathFirstLineChartPractice',
solutionSandbox: 'exercise/SvgPathFirstLineChartSolution',
},
+
+ {
+ title: (
+
+ Close a path with Z
(and build your first area
+ chart)
+
+ ),
+ whyItMatters: (
+ <>
+
+ The <path>
element can be used to draw
+ extended lines or create closed shapes.
+
+ To close a shape, add Z
at the end of the{' '}
+ d
attribute and use the fill
{' '}
+ property to apply a color.
+
Z
at the end of the d
{' '}
+ attribute to close the shape.
+ fill
property to apply a color to the
+ shape.
+