scrimba
Frontend Career Path
Web dev basics
Build a Space Exploration site
Replace the jpg with a webp
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
Replace the jpg with a webp
Expand for more info
styles.css
run
preview
console
body {
color: white;
background-image: url("images/universe.jpg");
background-size: cover;
text-align: center;
font-family: 'Orbitron', sans-serif;
}

#main-logo {
width: 100px;
}

.btn {
padding: 6px 12px;
background: white;
border: none;
font-family: 'Orbitron', sans-serif;
}

.underline {
border-bottom: 4px solid white;
}
Console
/index.html
-2:31