scrimba
Frontend Career Path
Web dev basics
Build a Space Exploration site
Aside: Google Fonts
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
Aside: Google Fonts
Expand for more info
styles.css
run
preview
console
body {
color: white;
background-image: url("images/universe.jpg");
background-size: cover;
text-align: center;
/*
Set the font family here.
*/
}

.btn {
padding: 6px 12px;
background: white;
border: none;
/*
You'll need to do something here as well!
Can you spot what it is?
*/
}
Console
/index.html
-4:18