scrimba
Frontend Career Path
Web dev basics
Build a Birthday GIFt Site
Turn the header into a flexbox
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
Turn the header into a flexbox
Expand for more info
styles.css
run
preview
console
body {
text-align: center;
font-family: 'Happy Monkey', cursive;
background: #a2d2ff;
color: #ffffff;
}

h1, h2, h3, h4, p {
text-shadow: 0 0 1px black;
}

#bff-img {
width: 150px;
border-radius: 50%;
border: 6px solid #EFB0C9;
}

h2, h4 {
background: #EFB0C9;
}

/*
Challenge:
First, wrap the HTML elements in a <div> with an
id called "header".

Then, select the "header" and use flexbox to achieve
the layout you've been provided in the design slide.
*/
Console
/index.html
-1:41