fix(curriculum): add void element reminder to cafe menu step 16 (#63855)

Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Aashish kharel
2025-11-18 14:50:45 -08:00
committed by GitHub
parent 1ed9f0e4d2
commit 877bd93358
@@ -9,6 +9,8 @@ dashedName: step-12
Now you need to link the `styles.css` file, so the styles will be applied again. Inside the `head` element, add a `link` element. Give it a `rel` attribute with the value of `"stylesheet"` and an `href` attribute with the value of `"styles.css"`.
**Note:** The `link` element is a void element, which means it doesn't have a closing tag. Void elements should be written as `<link>` rather than `<link></link>`.
# --hints--
Your code should have a `link` element.