Tangy is building your next step
Shaping the lesson around what you want to make.
Tangy is building your next step
Shaping the lesson around what you want to make.
Computer Science
Bridge your existing React and CSS Box Model knowledge to build interactive, responsive designs in Figma. You will design a complete, high-fidelity SaaS Task Workspace from scratch, learning professional UI/UX workflows along the way.
Build it yourself, get guided when you are stuck, and leave with proof you can actually show.
Follow the path module by module. The layout keeps the lesson count, your progress, and the module description in one scan.
From DOM to Canvas: Figma Interface & Layout Foundations
2 lessonsTranslate your HTML structural knowledge into Figma's infinite canvas. You'll master vector basics and organize elements using Frames instead of generic groups.
Visual Flexbox: Designing with Figma Auto Layout
2 lessonsConnect your CSS Box Model skills directly to Figma's most powerful feature: Auto Layout. Build self-resizing cards and responsive lists.
Visual Systems: Typography, Colors, and Style Libraries
2 lessonsStep away from arbitrary styling. Build a consistent design system that can translate seamlessly to CSS custom properties.
Component-Driven Design: Reusability and Variants
2 lessonsApply your React Component and Props mental models directly in Figma by creating master components, variants, and component properties.
Prototyping, Motion, and Developer Handoff
2 lessonsAnimate your SaaS workspace to bring it to life and prepare design assets for development.
Public lesson
In web development, you write HTML to build structure and CSS to style it. In Figma, you do the exact same thing, but visually.
Instead of typing <div> tags, you draw Frames. Instead of setting a background-color in CSS, you apply a Fill in the properties panel.
Let's open Figma and map what you already know about HTML nesting to Figma's layers.
In Figma, the primary container is called a Frame. Think of a Frame as a <div> with position: relative and overflow: hidden optionality.
Tasks
F key on your keyboard (this activates the Frame tool).Look at the left sidebar (the Layers Panel). You will see a new layer called Frame 1 with a small grid icon next to it.
Tasks
To make this feel like a real component, let's give it some CSS-like properties using the right sidebar (the Design Panel):
350 and the height (H) to 200.#F0F0F0).Tasks
Now let's nest some shapes inside our container, just like putting tags inside a <div>.
R key (the Rectangle tool).O key (the Ellipse tool).Shift (to keep it a perfect circle) and drag inside the Frame to create an avatar placeholder.Look back at your Layers Panel on the left.
Notice how the Rectangle 1 and Ellipse 1 layers are slightly indented underneath Frame 1? Figma did this automatically because you drew them inside the boundaries of the Frame.
You have just created this HTML structure visually:
<div class="frame-1">
<div class="rectangle-1"></div>
<div class="ellipse-1"></div>
</div>
<div class="frame-1">
<div class="rectangle-1"></div>
<div class="ellipse-1"></div>
</div>
Tasks
If you drag the circle completely outside of the gray Frame on your canvas, look at the Layers Panel again. What happened to its position in the layer tree? Drag it back inside to see it nest again.
Tasks
In HTML/CSS, elements stack based on their order in the document, or via z-index. Figma uses the order of the Layers Panel to determine what sits on top.
What to look for:
Observe which shape is now hiding behind the other on your canvas. This is the visual equivalent of changing their DOM order or z-index.
Tasks
Just like writing clean class names in HTML, a professional designer never leaves layers named "Frame 1" or "Rectangle 2".
Profile Card.Avatar.Cover Image.Tasks
Now that you have your structure, let's style it. Select the Avatar circle on your canvas.
Go to the right sidebar (the Design Panel) and try to:
3px thick and white.Explain it back
Put it in your own words
When you are done, look at your Layers Panel. You should have a clean, semantic tree structure of a Profile Card with nested, styled elements. How does the hierarchy feel compared to writing raw CSS?
20 more characters
5 modules · 10 lessons
From DOM to Canvas: Figma Interface & Layout Foundations
Visual Flexbox: Designing with Figma Auto Layout
Visual Systems: Typography, Colors, and Style Libraries
Component-Driven Design: Reusability and Variants
Prototyping, Motion, and Developer Handoff
Learn by building your own version.
Remix this public project to open the workspace, follow the guided build, and let the AI mentor teach you through the work instead of doing it for you.