Get Started
Get started means: open the project, find app.component, change the title, save, see the browser refresh. Then add a second component with ng generate component student-card.
File map: .ts = logic, .html = mark-up, .css = look. Don’t put SQL in the component. Don’t put all CSS global if it belongs to one card.
Trap: editing dist/ instead of src/. Dist is build output. Another trap: skipping generate and copy-pasting a huge Stack Overflow component you can’t read.
Exam tip
Change title → generate StudentCard → see it on screen.