UNIT 2 • STAGE 7 OF 7
Final touches, CSS comments, and celebrating what you built
Look at what you've built over the past seven stages - a complete, styled profile page with a custom header, Flexbox card layout, images, polished typography, and shadows. That's real CSS.
In this final stage, you'll add CSS comments, do a checklist review, save your work, and celebrate.
You chose the colors. You wrote the words. You applied the CSS. This profile page is a genuine expression of who you are and what you want to build.
CSS comments let you leave notes in your code that the browser completely ignores - they never appear on the page. They serve three purposes that real developers rely on every day:
/* HEADER */ or /* CARD LAYOUT */ makes a long stylesheet scannable at a glance.margin-top: 0. A quick comment like /* removes browser default gap */ saves future-you the confusion./* ... */ turns it off without deleting it. Useful for testing what a page looks like without a specific style.CSS comments always use /* comment here */ - a slash-asterisk to open and an asterisk-slash to close. Unlike JavaScript or other languages, CSS does not support the // single-line comment style. If you try // comment in CSS it will silently break the line - so always use the /* */ format.
Go through each item and make sure your page is complete:
<h4> header - not placeholder text<p> tags<img src="...">){ have a matching closing brace }In Unit 2, you learned to use all of these CSS tools:
Before you move on:
this-is-me.htmlEverything you wrote in this editor belongs to you. Copy it, save it, modify it, show it off. This is the beginning of your portfolio as a developer.
You've finished Unit 2! In Unit 3, you'll combine HTML structure and CSS layout to build something even bigger:
Build a styled online newspaper featuring Tribal nation news. You'll use position:absolute to overlay text on images, arrange article cards in a row, and create a professional masthead.
position: absolute hero image article cards mastheadYou used CSS to build a real, styled webpage from scratch. You learned Flexbox, shadows, typography, and image control. You proved that Native youth belong in tech - and you're just getting started.