scrimba
Frontend Career Path
Web dev basics
Build a Birthday GIFt Site
Set the colors
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
Set the colors
Expand for more info
styles.css
run
preview
console
/*
Challenge:
Add colors to the site based on the provided design.

pink: #EFB0C9
blue: #a2d2ff
white: #ffffff
*/

body {
text-align: center;
font-family: 'Happy Monkey', cursive;
}

#bff-img {
width: 150px;
border-radius: 50%;
}
Console
/index.html
-1:22