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

/*
Challenge:
Add a thin blurred border around the <h1>, <h2>,
and <h4> using the text-shadow technique you
learned in the Space Exploration section. Set
the blur to 1px and the color to black.
*/

#bff-img {
width: 150px;
border-radius: 50%;
border: 6px solid #EFB0C9;
}
Console
/index.html
-3:17